Skip to content

Commit

Permalink
.github: add building job
Browse files Browse the repository at this point in the history
Signed-off-by: Anna Shaleva <anna@nspcc.ru>
  • Loading branch information
AnnaShaleva committed Jan 31, 2023
1 parent 3dc9001 commit 3c9efd8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,21 @@ jobs:

- name: Test
run: go test -v ./...

build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go_versions: [ '1.17', '1.18', '1.19' ]
fail-fast: false
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '${{ matrix.go_versions }}'

- name: Compile contracts
run: make build

0 comments on commit 3c9efd8

Please sign in to comment.