Skip to content

Merge pull request #35 from asmeurer/build-backend #35

Merge pull request #35 from asmeurer/build-backend

Merge pull request #35 from asmeurer/build-backend #35

Workflow file for this run

name: Build removestar
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
SHELLOPTS: errexit:nounset:pipefail
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- 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 pyflakes pytest pytest-doctestplus ruff
- name: Lint
run: |
ruff --select=A,B,E,F,PLC,PLE,PLW,SIM,W --ignore=B023,B904,E402,PLC1901,SIM115,B018 --line-length=263 --statistics .
python -We:invalid -We::SyntaxWarning -m compileall -f -q removestar/
- name: Install
run: |
python -m pip install .
- name: Test
run: |
pytest