Skip to content

Commit

Permalink
Update CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRuiz7 committed Nov 7, 2024
1 parent 580b827 commit 7109d54
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@ name: Build packages (on push)
# This workflow runs when any of the following occur:
# - On push to branches named after ci/*
on:
push:
# Sequence of patterns matched against refs/heads
branches:
- "ci/*"
pull_request:
# Sequence of patterns matched against refs/heads
branches:
- "migrate-*"
- "ci/*"

jobs:
call-build-workflow:
uses: ./.github/workflows/build.yml
secrets: inherit
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 7109d54

Please sign in to comment.