Skip to content

Commit

Permalink
First pass github actions for test
Browse files Browse the repository at this point in the history
  • Loading branch information
camillescottatwork committed Jul 24, 2024
1 parent 7429292 commit 15ff646
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install apt dependencies
run: |
sudo apt update
sudo apt install openldap
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.12
- name: cache poetry install
uses: actions/cache@v2
with:
path: ~/.local
key: poetry-1.8.3-0
- uses: snok/install-poetry@v1
with:
version: 1.8.3
virtualenvs-create: true
virtualenvs-in-project: true
- name: cache deps
id: cache-deps
uses: actions/cache@v2
with:
path: .venv
key: pydeps-${{ hashFiles('**/poetry.lock') }}
- run: poetry install --no-interaction --no-root
if: steps.cache-deps.outputs.cache-hit != 'true'
- run: poetry install --no-interaction
- run: poetry run pytest

0 comments on commit 15ff646

Please sign in to comment.