Skip to content

Commit

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

* Format files
  • Loading branch information
AlexRuiz7 authored Nov 8, 2024
1 parent 7f620b2 commit 98a6767
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/build_on_push.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

# 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:
# uses: ./.github/workflows/test.yml
runs-on: ubuntu-22.04
steps:
- run: |
./gradlew assemble --parallel --no-build-cache -PDISABLE_BUILD_CACHE
call-build-workflow:
uses: ./.github/workflows/build.yml
secrets: inherit

0 comments on commit 98a6767

Please sign in to comment.