Skip to content

Merge branch 'ci-node24-actions' of 'https://github.com/jjmerchante/r… #187

Merge branch 'ci-node24-actions' of 'https://github.com/jjmerchante/r…

Merge branch 'ci-node24-actions' of 'https://github.com/jjmerchante/r… #187

Workflow file for this run

name: tests
on:
push:
branches:
- '**'
tags:
- '!**'
pull_request:
branches:
- '**'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
poetry install -vvv
- name: Lint with flake8
run: |
poetry run flake8
- name: Tests and Coverage
run: |
poetry run coverage run --source=release_tools tests/run_tests.py
- name: Coveralls
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 # v2.3.0
with:
coverage-reporter-version: "v0.6.9"
flag-name: run ${{ join(matrix.*, ' - ') }}
parallel: true