Skip to content

Commit

Permalink
try alternative if syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jacques-n committed Jul 29, 2024
1 parent 7945c48 commit 917df9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
- name: Build
run: go build ./...
- name: Run Tests
if: ${{ runner.os != 'Linux' }}
if: runner.os != 'Linux'
run: go test -v ./...
- name: Run Tests with Coverage
if: ${{ runner.os == 'Linux' }}
if: runner.os == 'Linux'
run: go test -v -coverprofile=coverage.out ./...
- name: Upload coverage to Codecov
if: ${{ runner.os == 'Linux' }} && github.repository == 'substrait-io/substrait-go'
if: runner.os == 'Linux' && github.repository == 'substrait-io/substrait-go'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit 917df9f

Please sign in to comment.