Fix minor formatting and wording 💛 #67
This file contains 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: Build | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- runner: test-alpine | |
- runner: test-alpine-user | |
- runner: test-alpine-lfs | |
- runner: test-debian | |
- runner: test-debian-user | |
- runner: test-ubuntu | |
- runner: test-arch | |
- runner: test-fedora | |
- runner: test-opensuse | |
- runner: test-corehookspath | |
- runner: test-whitespace | |
- runner: test-rules | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run tests for ${{ matrix.runner }} | |
run: | | |
sh "tests/${{ matrix.runner }}.sh" | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run tests and collect coverage | |
run: | | |
sh "tests/coverage.sh" | |
- name: Coveralls | |
uses: coverallsapp/github-action@v2 | |
# will need to work out how to get KCov uploaded to Coveralls from GitHub Actions |