Skip to content

Commit

Permalink
Refine workflow triggers
Browse files Browse the repository at this point in the history
This workflow will run on:

- pushes to main,
- pull requests against main, and
- by manual invocation via GitHub's UI
  • Loading branch information
jgarber623-cargosense committed Aug 5, 2024
1 parent 602c819 commit 928cbf8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: CI

on:
pull_request:
push:
branches:
- main
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 928cbf8

Please sign in to comment.