Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
actions: run CI only on main, but now allow on PRs (#27)
Browse files Browse the repository at this point in the history
Co-authored-by: trevorskaggs <[email protected]>
  • Loading branch information
jkeifer and trevorskaggs authored Oct 1, 2021
1 parent 2940294 commit 96ff1d8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
name: Python Test
on: [push]
on:
push:
branches:
main
pull_request:
branches:
main

env:
AWS_DEFAULT_REGION: us-west-2
Expand Down Expand Up @@ -38,4 +44,4 @@ jobs:
run: coverage run --source=. -m py.test
- name: Upload coverage
shell: pwsh
run: coverage report -m
run: coverage report -m

0 comments on commit 96ff1d8

Please sign in to comment.