Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
Add CI/CD pipeline for testing with Devbox
  • Loading branch information
jcardozo-eth authored Sep 2, 2024
1 parent 27e9c8b commit 389f648
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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: Run arbitrary commands
run: devbox run -- echo "done!"

- name: Run mvn tests
run: mvn test

0 comments on commit 389f648

Please sign in to comment.