fix(AXI4Memory): fix loss of r
channel packet
#1118
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: Format Checking | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
scalafmt: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
timeout-minutes: 900 | |
name: Check Format | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- run: | | |
mkdir -p ~/.local/bin | |
sh -c "curl -L https://github.com/com-lihaoyi/mill/releases/download/0.11.7/0.11.7 > ~/.local/bin/mill && chmod +x ~/.local/bin/mill" | |
export PATH=~/.local/bin:$PATH | |
- run: make check-format |