Skip to content

Rewire workflow objects to use external triggers #122

Rewire workflow objects to use external triggers

Rewire workflow objects to use external triggers #122

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with nose2
run: |
coverage run -m nose2 tests
coverage lcov -o cover/coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
path-to-lcov: cover/coverage.lcov
github-token: ${{ secrets.GITHUB_TOKEN }}