Skip to content

try to fix open call on windows #112

try to fix open call on windows

try to fix open call on windows #112

Workflow file for this run

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 }}