fixup #471
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2024 Jomco B.V. | |
| # SPDX-FileCopyrightText: 2024 Stichting Connekt | |
| # SPDX-FileContributor: Joost Diepenmaat <joost@jomco.nl> | |
| # SPDX-FileContributor: Remco van 't Veer <remco@jomco.nl> | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| name: Test | |
| on: push | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: ubuntu-22.04 | |
| services: # we need postgres for testing the authorization register | |
| postgres: | |
| image: postgres | |
| env: | |
| POSTGRES_PASSWORD: postgres | |
| # Set health checks to wait until postgres has started | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| ports: | |
| # Maps tcp port 5432 on service container to the host | |
| - 5432:5432 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/cache@v5 | |
| with: | |
| path: "~/.m2" | |
| key: "deps-${{ hashFiles('deps.edn') }}" | |
| restore-keys: "deps-" | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: Install packages | |
| run: | | |
| sudo apt-get install -y reuse | |
| - name: Install clj runtime | |
| run: | | |
| cd "$HOME" | |
| curl -L -O https://github.com/clojure/brew-install/releases/latest/download/posix-install.sh | |
| chmod +x posix-install.sh | |
| sudo ./posix-install.sh | |
| - name: Run make check | |
| run: | | |
| make check | |
| env: | |
| AR_TEST_DB_NAME: "postgres" # default database in service container | |
| AR_TEST_DB_USER: "postgres" | |
| AR_TEST_DB_PASSWORD: "postgres" |