Skip to content

rename to deactivate #1

rename to deactivate

rename to deactivate #1

Workflow file for this run

name: python
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -pf requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
- name: Test with pytest
run: |
pytest --version