git.schokokeks.org
Repositories
Help
Report an Issue
freewvs.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
8c1afdc
Branches
Tags
master
v0.1.1
v0.1.2
v0.1.3
v0.1.4
freewvs.git
.github
workflows
runpyci.yml
install setuptools in ci
Hanno Böck
commited
8c1afdc
at 2024-12-31 19:01:11
runpyci.yml
Blame
History
Raw
# last update: 2024-12-07 # https://github.com/hannob/codingstyle --- name: runpyci "on": - pull_request - push jobs: build: strategy: matrix: python-version: [3.9, 3.x, 3.14-dev] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} ${{ matrix.os }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies and linters run: | [ -e requirements.txt ] && pip install -r requirements.txt pip install setuptools # CUSTOM: required until we move to pyproject pip install pycodestyle pyupgrade pyflakes dlint pylint ruff - name: Run tests env: RUN_ONLINETESTS: 1 run: | ./runpyci.sh