Skip to content

feat: French Specifications v1.4 #40

feat: French Specifications v1.4

feat: French Specifications v1.4 #40

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: "0 0 * * 1"
workflow_dispatch:
jobs:
tests:
name: Unit and End-to-End Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install poetry
run: pipx install --force poetry==1.8.4
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: '3.12'
cache: 'poetry'
- name: Install local project
run: make init
- name: Unit tests
run: make test-unit
- name: Run end-to-end tests
run: make test-e2e