Skip to content

Add update method for cogroups #84

Add update method for cogroups

Add update method for cogroups #84

Workflow file for this run

name: f90nml
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-20.04]
python: [2.7.18, 3.5.10, 3.6.15, 3.7.16, 3.8.16, 3.9.16, 3.10.10, 3.11.2]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements_test.txt
- name: Main test
shell: bash
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
coverage run --source f90nml setup.py test
coverage report -m
coveralls