try to fix open call on windows #112
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-mac | |
on: push | |
jobs: | |
test-mac: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: make build | |
- name: Run tests | |
run: make test | |
- name: Generate coverage | |
run: make coverage.lcov | |
- name: Upload coverage | |
run: bash <(curl -s https://codecov.io/bash) || echo 'Codecov failed to upload' | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |