Skip to content

Commit

Permalink
Migrate from Travis CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
my-flow committed Jan 4, 2024
1 parent e768136 commit 93ae7df
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 21 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build Gradle project

on:
push:
workflow_dispatch:

jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: gradle/wrapper-validation-action@v1
- uses: gradle/gradle-build-action@v2
- run: ./gradlew clean check test assemble
- run: ./gradlew :core:sonar -Dsonar.login="${{ secrets.SONAR_TOKEN }}"
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

0 comments on commit 93ae7df

Please sign in to comment.