We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad6567 commit 89ae28cCopy full SHA for 89ae28c
.github/workflows/ci.yml
@@ -2,6 +2,8 @@ name: CI
2
on: [push, pull_request]
3
jobs:
4
test:
5
+ # Avoid running CI more than once on pushes to main repo open PRs
6
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
7
runs-on: ubuntu-latest
8
services:
9
postgres:
.github/workflows/static.yml
@@ -1,7 +1,9 @@
1
name: Check collectstatic
- test:
+ collectstatic:
steps:
- name: Check out repository
0 commit comments