Skip to content

Commit

Permalink
feat: Add GitHub Actions workflow for building on push to main and de…
Browse files Browse the repository at this point in the history
…velop branches
  • Loading branch information
massone99 committed Jan 28, 2024
1 parent cfaa033 commit af5858b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/action.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
name: Build on push

on:
push:
branches:
- main
- develop

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Build project
run: gradle build

0 comments on commit af5858b

Please sign in to comment.