mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
.github/workflows/actions.yaml: Run CI on pull requests too
Not just on pushes
This commit is contained in:
parent
b5e415d97d
commit
be7c68f695
1 changed files with 5 additions and 1 deletions
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 a new issue