Skip to content

test

test #15

Workflow file for this run

name: test
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
schedule:
# At 23:25 on Thursday.
- cron: "25 23 * * 4"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-latest]
python-version: [ '3.8', '3.x' ]
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python package
run: pip install . -v
- name: Install pytest testing framework
run: pip install pytest
- name: Test pymvg
run: pytest