Skip to content

Merge pull request #888 from open-AIMS/fix-cyclone-mortalities #27

Merge pull request #888 from open-AIMS/fix-cyclone-mortalities

Merge pull request #888 from open-AIMS/fix-cyclone-mortalities #27

Workflow file for this run

name: UnitTests
on:
# Trigger manually or on merge to main
push:
branches:
- main
# Run in PR when packages updated
pull_request:
paths:
- 'Manifest-v1.11.toml'
workflow_dispatch:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- "1.11"
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
with:
cache-name: adria-setup-cache
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
verbose: true
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}