1
0
mirror of synced 2026-07-19 14:55:07 +00:00

fix: run tests on release-* branches too (#289)

This commit is contained in:
Yury Semikhatsky
2021-02-19 09:35:30 -08:00
committed by GitHub
parent 8e62a47f6d
commit 8bfb69b93d
2 changed files with 12 additions and 4 deletions
+6 -2
View File
@@ -1,9 +1,13 @@
name: Test
on:
push:
branches: [ master ]
branches:
- master
- release-*
pull_request:
branches: [ master ]
branches:
- master
- release-*
jobs:
build:
timeout-minutes: 30
+6 -2
View File
@@ -1,12 +1,16 @@
name: Verify API
on:
push:
branches: [ master ]
branches:
- master
- release-*
paths:
- 'scripts/*'
- 'api-generator/*'
pull_request:
branches: [ master ]
branches:
- master
- release-*
paths:
- 'scripts/**'
- 'api-generator/**'