Skip to content

Remove no longer used variable #16

Remove no longer used variable

Remove no longer used variable #16

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ci-tests-${{ github.ref }}-1
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: pip install pytest pylint
- name: Run linter
run: pylint plover_q_and_a
- name: Run tests
run: pytest