Skip to content

Commit

Permalink
Fix the workflow definitions
Browse files Browse the repository at this point in the history
A while back I changed the name of the
default branch to main, which effectively
disabled the tests and builds.

And so, a test failure creeped in. Now we
have a bug to to fix.
  • Loading branch information
filmil committed Oct 27, 2023
1 parent 866b0aa commit 1009e82
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Integration
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]

branches: [ main ]
schedule:
- cron: "43 18 * * 0"
jobs:
test:
# Pin the version of the docker container used for building.
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Setup bazel
uses: abhinavsingh/setup-bazel@v3
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: Test
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]

branches: [ main ]
schedule:
- cron: "43 19 * * 0"
jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Setup bazel
uses: abhinavsingh/setup-bazel@v3
Expand Down

0 comments on commit 1009e82

Please sign in to comment.