Skip to content

Reverted change to retrieve package version from PyPI , PR #16, due … #36

Reverted change to retrieve package version from PyPI , PR #16, due …

Reverted change to retrieve package version from PyPI , PR #16, due … #36

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions

Check failure on line 1 in .github/workflows/python-static.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-static.yml

Invalid workflow file

(Line: 15, Col: 24): Matrix vector 'check' does not contain any values
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python Static Analysis
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.14"]
check: [] # tmp Remove "formatting"
steps:
- uses: actions/checkout@v4
- 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 tox
- name: Test with tox
run: |
tox -e ${{ matrix.check }}