test ci
Some checks failed
Publish Docker image / publish (push) Failing after 55s
CI / tests (push) Failing after 4m58s

This commit is contained in:
Lucien Cartier-Tilet 2025-01-25 12:07:33 +01:00
parent 4c7d82a482
commit 5b1c02e3d2
Signed by: phundrak
GPG Key ID: 347803E8073EACE0

View File

@ -6,8 +6,8 @@ env:
DATABASE_URL: ${{ vars.DATABASE_URL }} DATABASE_URL: ${{ vars.DATABASE_URL }}
concurrency: concurrency:
group: ${{ gitea.workflow }}-${{ gitea.ref }} group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ gitea.ref != 'ref/heads/master' }} cancel-in-progress: ${{ github.ref != 'ref/heads/master' }}
jobs: jobs:
tests: tests:
@ -29,8 +29,6 @@ jobs:
--health-interval 10s --health-interval 10s
--health-timeout 10s --health-timeout 10s
--health-retries 5 --health-retries 5
ports:
- 5432:5432
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install Nix - name: Install Nix
@ -65,7 +63,7 @@ jobs:
thresholds: '60 80' thresholds: '60 80'
- name: Add Coverage PR Comment - name: Add Coverage PR Comment
uses: mshick/add-pr-comment@v2 uses: mshick/add-pr-comment@v2
if: gitea.event_name == 'pull_request' if: github.event_name == 'pull_request'
with: with:
recreate: true recreate: true
message-path: code-coverage-results.md message-path: code-coverage-results.md