Skip to content

Commit

Permalink
Merge pull request #32 from EtienneMiret/31-github-actions
Browse files Browse the repository at this point in the history
Switch from Travis to GitHub Actions
  • Loading branch information
EtienneMiret authored Jun 30, 2023
2 parents 3a77b2f + 15f8c18 commit b8fbe25
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test
on: push
permissions:
contents: read

jobs:
check:
name: Gradle check
runs-on: ubuntu-latest
steps:
- name: Git clone
uses: actions/checkout@v3
- name: Install Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version-file: .java-version
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Check
run: ./gradlew check
1 change: 1 addition & 0 deletions .java-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.8
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

0 comments on commit b8fbe25

Please sign in to comment.