Make mtimer writable & set sim frequency to 30 MHz #171
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Changelog check | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
changelog-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check which component is modified | |
uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
filters: | | |
# Only Track files which may affect tests / SW | |
any: | |
- 'Bender.yml' | |
- 'src/**' | |
- 'fpga/**' | |
- name: Check for CHANGELOG.md | |
if: steps.changes.outputs.any == 'true' | |
uses: dangoslen/changelog-enforcer@v3 | |
with: | |
changeLogPath: ./CHANGELOG.md | |
skipLabels: 'skip changelog' | |
missingUpdateErrorMessage: 'Please add a changelog entry in the CHANGELOG.md file.' |