.github/workflows/actions.yaml: Run CI on pull requests too
Not just on pushes
This commit is contained in:
parent
b5e415d97d
commit
be7c68f695
6
.github/workflows/actions.yaml
vendored
6
.github/workflows/actions.yaml
vendored
@ -1,6 +1,10 @@
|
|||||||
name: GitHub Actions Build
|
name: GitHub Actions Build
|
||||||
run-name: ${{ github.actor }} triggered a build
|
run-name: ${{ github.actor }} triggered a build
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "master" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "master" ]
|
||||||
jobs:
|
jobs:
|
||||||
Build-on-Ubuntu:
|
Build-on-Ubuntu:
|
||||||
runs-on: [ubuntu-latest]
|
runs-on: [ubuntu-latest]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user