This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
Fix SPDX-FileContributor typo #22
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
# SPDX-FileCopyrightText: 2024 Jomco B.V. | |
# SPDX-FileCopyrightText: 2024 Topsector Logistiek | |
# SPDX-FileContributor: Joost Diepenmaat <[email protected]> | |
# SPDX-FileContributor: Remco van 't Veer <[email protected]> | |
# | |
# SPDX-License-Identifier: AGPL-3.0-or-later | |
name: Test | |
on: push | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get current date | |
id: date | |
run: echo "date=$(date '+%Y-%m-%d')" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
with: | |
path: "~/.m2" | |
key: "test-${{ steps.date.outputs.date }}" | |
restore-keys: "test-" | |
- 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/linux-install.sh | |
bash linux-install.sh -p "$HOME" | |
- name: Run make check | |
run: | | |
PATH="$PATH:$HOME/bin" | |
make check |