Skip to content

Support append to existing combined archive file. #141

Support append to existing combined archive file.

Support append to existing combined archive file. #141

Workflow file for this run

name: Coverage
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ubuntu:
runs-on: ubuntu-22.04
timeout-minutes: 10
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- name: Clone
uses: actions/checkout@v4
- name: Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build
run: pip install --verbose .[dev] numpy
- name: Test
run: pytest --cov=msglc tests/
- name: Upload
uses: codecov/codecov-action@v4
if: matrix.python-version == '3.10'
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: TLCFEM/msglc
plugin: pycoverage