Skip to content

Commit

Permalink
🍴 gh-actions: run workflow on all branches
Browse files Browse the repository at this point in the history
This makes it easier for forks to test new changes before opening a PR.
  • Loading branch information
database64128 authored and zonyitoo committed Mar 3, 2023
1 parent 3e23d00 commit 9c62a30
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build & Test

on:
push:
branches: [main]
branches:
- '**'
pull_request:
branches: [main]

env:
CARGO_TERM_COLOR: always
Expand All @@ -18,6 +18,7 @@ jobs:
- ubuntu-latest
- windows-latest
- macos-latest
fail-fast: false
runs-on: ${{ matrix.platform }}

steps:
Expand Down

0 comments on commit 9c62a30

Please sign in to comment.