Skip to content

Bump to 0.3.3

Bump to 0.3.3 #28

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:
ci:
if: ${{ !startsWith(github.ref, 'refs/tags') }}
name: Build, Lint, Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Test/Lint Dependencies
run: pip install pytest pylint
- name: Run Linter
run: pylint plover_q_and_a
- name: Run Tests
run: pytest