Decode nocheck #695
Workflow file for this run
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: Unit tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
julia-version: | |
- '1.6' # LTS, and `BioSequences` minimally requires Julia v1.6 for `sum` with keyword init. | |
- '1' | |
julia-arch: [x86] | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
experimental: [false] | |
include: | |
- julia-version: nightly | |
julia-arch: x86 | |
os: ubuntu-latest | |
experimental: true | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup Julia | |
uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
- name: Run Tests | |
uses: julia-actions/julia-runtest@latest | |
- name: Create CodeCov | |
uses: julia-actions/julia-processcoverage@v1 | |
- name: Upload CodeCov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./lcov.info | |
flags: unittests | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
token: ${{ secrets.CODECOV_TOKEN }} |