Skip to content

Commit

Permalink
add a test github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaykarle committed Sep 5, 2024
1 parent 235ac10 commit 2d3b5a0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "Test and Build"

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: "Setup poetry"
uses: abatilo/actions-poetry@v2

- name: "Load cached venv"
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/flake.lock') }}-${{ hashFiles('**/poetry.lock') }}

- name: "Install python dependencies"
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
shell: bash

- name: "Test"
run: 'poetry run pytest'
shell: bash

0 comments on commit 2d3b5a0

Please sign in to comment.