-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the screwdriver to GitHub Actions. (#10)
The issue has been solved.
- Loading branch information
Showing
2 changed files
with
26 additions
and
82 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Elide CI/CD | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- '*' | ||
types: [opened, synchronize] | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
tests: | ||
name: Unit & Integration Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
- name: Run unit & integration tests | ||
run: mvn -B clean verify | ||
|
This file was deleted.
Oops, something went wrong.