Update dependency org.junit.jupiter:junit-jupiter to v6 #43
Workflow file for this run
This file contains hidden or 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: Check code style | |
| on: [push, pull_request] # yamllint disable-line rule:truthy | |
| jobs: | |
| style-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| show-progress: false | |
| - name: Install tools | |
| run: | | |
| sudo apt-get -qqy install shfmt | |
| npm install --quiet markdownlint-cli2 --global | |
| - name: make showvars | |
| run: make showvars | |
| - name: make style-check | |
| run: make style-check |