mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
Ensured Circle CI config works as expected (#2759)
* Test all branches and make sure tag checkouts build correctly * Fix syntax error
This commit is contained in:
parent
d10c38bb11
commit
cf7347fd3c
1 changed files with 13 additions and 5 deletions
|
|
@ -65,18 +65,26 @@ workflows:
|
|||
version: 2
|
||||
build:
|
||||
jobs:
|
||||
- install
|
||||
- build:
|
||||
- install:
|
||||
filters:
|
||||
tags:
|
||||
only: /.*/
|
||||
- test:
|
||||
requires:
|
||||
- install
|
||||
filters:
|
||||
tags:
|
||||
only: /.*/
|
||||
- build:
|
||||
requires:
|
||||
- test
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- canary
|
||||
- test:
|
||||
requires:
|
||||
- build
|
||||
tags:
|
||||
only: /.*/
|
||||
- release:
|
||||
requires:
|
||||
- test
|
||||
|
|
|
|||
Loading…
Reference in a new issue