Skip to content

Commit

Permalink
Merge pull request #2 from AlessandroMiola/add_gh_actions_config
Browse files Browse the repository at this point in the history
ci: add github actions configuration
  • Loading branch information
AlessandroMiola committed Dec 31, 2023
2 parents 7d80a3a + 75b247e commit 658c4c6
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Lint, Test

on:
push:
pull_request:
branches: [main]

concurrency:
# New commit on branch cancels running workflows of the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
PYTHON_VERSION: "3.10"
POETRY_VERSION: "1.6.1"

jobs:
lint-and-test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true

- name: Load cached venv if cache exists
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

- name: Install dependencies if cache does not exist
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root

- name: Install project
run: poetry install --no-interaction

- name: Verify code formatting (Black)
run: poetry run black --check --diff .

- name: Enforce code style (flake8)
continue-on-error: true
run: poetry run flake8 --show-source .

- name: Run tests
run: poetry run pytest --verbose

0 comments on commit 658c4c6

Please sign in to comment.