git.schokokeks.org
Repositories
Help
Report an Issue
freewvs.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
cab28c0
Branches
Tags
master
v0.1.1
v0.1.2
v0.1.3
v0.1.4
freewvs.git
.github
workflows
runtests.yml
update github action version
Hanno Böck
commited
cab28c0
at 2023-09-21 09:47:01
runtests.yml
Blame
History
Raw
--- name: run tests "on": - pull_request - push jobs: build: runs-on: ubuntu-latest strategy: matrix: # disable 3.12-dev until this is fixed: # https://github.com/PyCQA/pycodestyle/issues/1142 python-version: [3.8, 3.x] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 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 - name: Run tests env: RUN_ONLINETESTS: 1 run: | python3 -m unittest