Skip to content

Commit

Permalink
Add workflow to just build and test
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-sh committed Mar 26, 2024
1 parent 98deff4 commit 6deec03
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build and Test

on:
workflow_dispatch:

concurrency:
group: build-and-test-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: write

jobs:
build-and-test:
runs-on: ubuntu-latest
container:
image: ubuntu:22.04
steps:
- uses: actions/checkout@v3

- uses: ./.github/actions/gradle-run
with:
steps: |-
build
test

0 comments on commit 6deec03

Please sign in to comment.