Skip to content

Commit

Permalink
add example circleci config
Browse files Browse the repository at this point in the history
Signed-off-by: Eli Uriegas <[email protected]>
  • Loading branch information
seemethere committed Mar 2, 2020
1 parent aafec99 commit 3ebe0ff
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2.1

jobs:
run_on_branches_and_tags:
docker:
- image: circleci/python:3
steps:
- run:
name: This should run on both
command: echo "I was runnning"

workflows:
version: 2.1
build_test_deploy:
jobs:
- run_on_branches_and_tags:
name: "Test that tags apply correctly"
filters:
tags:
only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
branches:
only:
- nightly
- master

0 comments on commit 3ebe0ff

Please sign in to comment.