Skip to content

Commit

Permalink
Run Continuous integration workflow on PRs
Browse files Browse the repository at this point in the history
Make the workflow get triggered either by pushes to the default branch, by
pull requests targeting the default branch, or by manually triggering it from
Github's UI.
  • Loading branch information
avdv committed Nov 7, 2022
1 parent 2a1ce74 commit cb2628e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
name: Continuous integration
on: push

on:
push:
branches: master
pull_requests:
branches: master
workflow_dispatch: # allows manual triggering

jobs:
test-nixpkgs:
name: Build & Test - Nixpkgs
Expand Down

0 comments on commit cb2628e

Please sign in to comment.