Fix group-id spelling errors #57
Workflow file for this run
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: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
cache: 'maven' | |
cache-dependency-path: '**/deps.edn' | |
- uses: extractions/setup-just@v2 | |
- uses: DeLaGuardo/[email protected] | |
with: | |
cli: latest | |
- name: Setup Git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Kmono CI" | |
- name: Test | |
run: | | |
just cli run \ | |
--run-in-order false \ | |
--skip-unchanged true \ | |
-M :test |