CompatHelper: bump compat for DirectedAcyclicGraphs to 0.2, (keep exi… #773
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 | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
env: | |
DATADEPS_ALWAYS_ACCEPT: 1 | |
JIVE_PROCS: 1 | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: 1.7 | |
# Runs a single command using the runners shell | |
- name: Unit Tests | |
run: | | |
julia --project --check-bounds=yes --depwarn=yes -e 'import Pkg; Pkg.test(; coverage=true)' | |
- name: Codecov Upload | |
run: | | |
julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder());' | |