git.schokokeks.org
Repositories
Help
Report an Issue
freewvs.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
a81bdb4
Branches
Tags
master
v0.1.1
v0.1.2
v0.1.3
v0.1.4
freewvs.git
.github
workflows
runtests.yml
CI: python 3.13 is no longer -dev
Hanno Böck
commited
a81bdb4
at 2024-10-28 08:48:40
runtests.yml
Blame
History
Raw
--- name: run tests "on": - pull_request - push jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.8, 3.x, 3.13] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip #pip install -r requirements.txt pip install pycodestyle pyflakes pylint dlint pyupgrade setuptools - name: Run tests env: RUN_ONLINETESTS: 1 run: | python3 -m unittest