Ajoute pilotes, services, et thematiques aux indicateurs, et la possibilité de filtrer ces derniers. #1051
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Earthly test | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: all | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: earthly/actions/setup-earthly@v1 | |
with: | |
version: v0.7.0 | |
- uses: supabase/setup-cli@v1 | |
with: | |
version: 1.52.3 | |
- run: earthly +setup-env | |
- run: earthly +dev | |
- run: docker restart supabase_rest_tet | |
- run: earthly +curl-test | |
- run: earthly +db-test | |
- run: earthly +business-test | |
- run: earthly +api-test --tests 'base droit historique plan_action labellisation indicateurs utilisateur' | |
- run: earthly +deploy-test | |
- run: earthly +client-test |