.github/workflows/swift.yml
name: Swift
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: make build
- name: Run tests
run: make test-all
- name: Upload coverage to Codecov.io
run: make upload_to_codecov
- name: Upload coverage as artifact
uses: actions/upload-artifact@v1
with:
name: ISO639-codecov
path: .build/CodeCoverageReport