Skip to content

Try using resume_from argument #181

Try using resume_from argument

Try using resume_from argument #181

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
env:
USING_COVERAGE: '3.9'
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
cache: pip
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
make install-test
- name: Run test
run: |
make test