Skip to content

Commit

Permalink
Made changelog test.
Browse files Browse the repository at this point in the history
  • Loading branch information
MicahGale committed Feb 24, 2024
1 parent 3024075 commit c6f26c8
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,22 @@ jobs:
python-version: 3.8
- run: pip install --user -r requirements/dev.txt
- run: black --check montepy/ tests/




changelog-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Check for changes
uses: dorny/paths-filter@v3.0.1
id: changes
with:
filters: |
change:
- 'doc/source/changelog.rst'
- if: steps.changes.outputs.change == 'false'
run: |
echo "Changelog not updated"
exit 1

0 comments on commit c6f26c8

Please sign in to comment.