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

Run ci on main push only #98

Merged
merged 2 commits into from
Jun 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: flake8_lint

on:
push:
branches:
- main
paths:
- '**.py'
pull_request:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/push_pull_request_test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Automated testing workflow

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

jobs:
test:
Expand Down