Skip to content

GH Actions CI

GH Actions CI #120

Workflow file for this run

name: GH Actions CI
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
# 3 am Tuesdays and Fridays
- cron: "0 3 * * 2,5"
concurrency:
group: "${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }}"
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
unittests:
if: "github.repository == 'MDAnalysis/mda-xdrlib'"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install deps
run: |
python -m pip install wheel coverage
- name: install package
run: |
python -m pip install -e .
- name: run tests
run: |
coverage run -m unittest discover
coverage xml
- name: test imports
working-directory: ../
run: |
python -Ic "from mda_xdrlib import xdrlib"
- uses: codecov/codecov-action@v3
if: github.event_name != 'schedule'
with:
files: coverage.xml
fail_ci_if_error: true
verbose: true