Add instructions for running project via GitHub Codespaces #56
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: Testing with devbox | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install devbox | |
uses: jetify-com/[email protected] | |
- name: Check Devbox Java (JDK) version | |
run: devbox info jdk22 | |
- name: Check Devbox Maven version | |
run: devbox info maven | |
- name: Run mvn tests | |
run: devbox run test |