Skip to content
Draft
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
6 changes: 5 additions & 1 deletion .github/workflows/commit_gate_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
paths:
- 'commit_gate/**'
- '.github/workflows/commit_gate_ci.yml'
pull_request:
paths:
- 'commit_gate/**'
- '.github/workflows/commit_gate_ci.yml'

jobs:
test:
Expand All @@ -21,7 +23,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install pytest
run: pip install pytest
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run commit_gate tests
run: |
cd commit_gate
Expand Down