Skip to content

Commit

Permalink
chore: only run ci once on PR (#30)
Browse files Browse the repository at this point in the history
* chore: only run ci once on PR
  • Loading branch information
dni authored Apr 23, 2024
1 parent 65951bb commit 054bae3
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 58 deletions.
54 changes: 0 additions & 54 deletions .github/workflows/codeql.yml

This file was deleted.

6 changes: 5 additions & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: black
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: mypy
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
jobs:
check:
runs-on: ubuntu-latest
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Ruff
on: [ push, pull_request ]
on:
push:
branches:
- main
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: tests
on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 054bae3

Please sign in to comment.