Skip to content

Commit

Permalink
ci: set up realm testing on CI (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
moul authored Sep 24, 2023
1 parent d97ae6f commit 0c6d774
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/realm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: realm

on:
pull_request:
paths:
- "realm/**"
- "Makefile"
- "go.sum"
push:
branches:
- master
- main

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- run: go install github.com/gnolang/gno/gnovm/cmd/gno
- run: gno test --verbose ./realm

0 comments on commit 0c6d774

Please sign in to comment.