Skip to content

Commit

Permalink
Adding Github Workflow
Browse files Browse the repository at this point in the history
  Adding Github Workflow.

Signed-off-by: Davis Benny <[email protected]>
  • Loading branch information
DukeDavis12 committed Oct 9, 2024
1 parent 6d98fc0 commit a13f3a3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: testfidoiot
on:
workflow_dispatch:
push:
branches: [master, '*rel']
pull_request:
branches: [master, '*rel']
permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: scm checkout
uses: actions/checkout@v3
- name: setup-java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: build
run: |
mvn compile

0 comments on commit a13f3a3

Please sign in to comment.