git.schokokeks.org
Repositories
Help
Report an Issue
freewvs.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
f641f27
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 scripts
Hanno Böck
commited
f641f27
at 2026-01-28 16:10:06
runpyci.yml
Blame
History
Raw
# SPDX-License-Identifier: 0BSD # last update: 2026-01-07 # 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@v6 - name: Set up Python ${{ matrix.python-version }} ${{ matrix.os }} uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies and linters run: | [ -e requirements.txt ] && pip install -r requirements.txt pip install pycodestyle pyupgrade pyflakes dlint pylint ruff - name: Run tests env: RUN_ONLINETESTS: 1 run: | ./runpyci.sh