Skip to content

Commit

Permalink
fix(ci): skip CI for examples/tutorials running go1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Aug 28, 2024
1 parent 17443d8 commit 105d88a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,19 @@ jobs:
run: go test ./...

- name: Build examples
if: ${{ matrix.go-version != '~1.18' }}
run: |
go mod tidy
go build -v ./...
working-directory: ./examples

- name: Test examples
if: ${{ matrix.go-version != '~1.18' }}
run: go test -v ./...
working-directory: ./examples

- name: Build tutorials
if: ${{ matrix.go-version != '~1.18' }}
run: |
go mod tidy
go build -v ./...
Expand Down

0 comments on commit 105d88a

Please sign in to comment.