Skip to content

Tests

Tests #65

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches:
- "*"
schedule:
- cron: "0 0 * * 1,4"
jobs:
Test:
name: ${{ matrix.os }}, ${{ matrix.environment-file }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
environment-file:
- environment.yml
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ matrix.environment-file }}
micromamba-version: 'latest'
- name: Test package
run: |
coverage run -m pytest -v --color yes --cov=mandown --cov-append --cov-report term-missing --cov-report xml .
- name: codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
name: mandown-codecov
- name: Generate and publish the report
if: |
failure()
&& steps.status.outcome == 'failure'
&& github.event_name == 'schedule'
&& github.repository_owner == 'knaaptime'
uses: xarray-contrib/issue-from-pytest-log@v1
with:
log-path: pytest-log.jsonl