Skip to content

Commit

Permalink
Update CI workflow (#10)
Browse files Browse the repository at this point in the history
* Format files

* Update CI workflow
  • Loading branch information
AlexRuiz7 committed Nov 8, 2024
1 parent 66014fc commit 8390055
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/build_on_push.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build packages (on push)

# This workflow runs when any of the following occur:
# - On push to branches named after ci/*
on:
pull_request:
# Sequence of patterns matched against refs/heads
branches:
- "migrate-*"
- "ci/*"

jobs:
call-test-workflow:
runs-on: ubuntu-22.04
steps:
- run: |
./gradlew check
call-build-workflow:
uses: ./.github/workflows/build.yml
secrets: inherit

0 comments on commit 8390055

Please sign in to comment.