Skip to content

Update dependency flake8 to v7 #45

Update dependency flake8 to v7

Update dependency flake8 to v7 #45

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8.5'
cache: 'pip'
- run: sudo apt-get -q update && sudo apt-get install -y --no-install-recommends freeglut3-dev
- run: pip install -r requirements-dev.txt
- run: coverage run -m unittest
env:
PYGLET_SHADOW_WINDOW: 'False'
PYGLET_DEBUG_GL: 'False'
PYGLET_AUDIO: 'silent'
- uses: codecov/codecov-action@v3