Skip to content

Reference suitability (#11) #185

Reference suitability (#11)

Reference suitability (#11) #185

Workflow file for this run

name: Check format lint and test
on:
push:
branches: [ main ]
pull_request:
env:
python-version: "3.10"
permissions:
contents: read
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: 'Set up Python ${{ inputs.python-version }}'
with:
python-version: ${{ env.python-version }}
- uses: actions/cache@v4
id: cache-venv
with:
path: ./.venv/
key: ${{ runner.os }}-venv-${{ hashFiles('**/dev-requirements.txt') }}
restore-keys: |
${{ runner.os }}-venv-
- name: 'Create Virtualenv and install Dependencies'
if: steps.cache-venv.outputs.cache-hit != 'true'
run: |
python -m venv .venv
source .venv/bin/activate
pip install .[dev]
- name: "lint-check & test"
run: |
source .venv/bin/activate
poe lint-check
poe test