Skip to content

Commit 4559a1d

Browse files
committed
GitHub Actions: do the tests for each push
1 parent 29aba29 commit 4559a1d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Lint
22

3-
on: [pull_request]
3+
on: [push, pull_request]
44

55
jobs:
66
build:
@@ -19,4 +19,4 @@ jobs:
1919
- name: Run lint and static type checks
2020
run: tox
2121
env:
22-
TOXENV: flake8,black,import-order,mypy,manifest
22+
TOXENV: flake8,black,import-order,mypy,manifest

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Tests
22

3-
on: [pull_request]
3+
on: [push, pull_request]
44

55
jobs:
66
build:
@@ -23,4 +23,4 @@ jobs:
2323
- name: Test with tox
2424
run: tox
2525
env:
26-
TOXENV: ${{ matrix.toxenv }}
26+
TOXENV: ${{ matrix.toxenv }}

0 commit comments

Comments
 (0)