Skip to content

Commit

Permalink
No examples on windows action
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstinnett committed Feb 17, 2024
1 parent 5698913 commit 0605881
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,19 @@ jobs:
uses: actions/checkout@v4
- name: Test
run: go test ./...
runexamples:
strategy:
matrix:
go-version: [stable,oldstable]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test Examples
run: for EX in $(ls _examples); do go run ./_examples/$EX; done
coverage:
Expand Down

0 comments on commit 0605881

Please sign in to comment.