git.schokokeks.org
Repositories
Help
Report an Issue
freewvs.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
fd22cfc
Branches
Tags
master
v0.1.1
v0.1.2
v0.1.3
v0.1.4
v0.1.5
freewvs.git
.github
workflows
runpyci.yml
update CI
Hanno Böck
commited
fd22cfc
at 2026-07-25 14:33:18
runpyci.yml
Blame
History
Raw
# SPDX-License-Identifier: 0BSD # last update: 2026-07-25 # https://github.com/hannob/codingstyle --- name: runpyci "on": - pull_request - push jobs: build: strategy: matrix: python-version: [3.12, 3.x] runs-on: ubuntu-latest steps: - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} ${{ matrix.os }} uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} - name: Install dependencies and linters run: | [ -e requirements.txt ] && pip install -r requirements.txt pip install dlint pycodestyle pyflakes pylint pyproject pyupgrade ruff - name: Run tests env: RUN_ONLINETESTS: 1 run: | ./runpyci.sh