Skip to content

Add a --version option to the CLI #40

Add a --version option to the CLI

Add a --version option to the CLI #40

Workflow file for this run

name: lppa CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.12"
- run: sudo apt install -y make
- run: make devel
- run: flake8 tests lppa
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: sudo apt install -y make
- run: make devel
- run: pytest -v tests
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.12"
- run: sudo apt install -y make
- run: make devel
- run: make build