Bump com.github.valfirst:slf4j-test from 2.9.0 to 3.0.1 #313
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
# Example workflow | |
name: Format | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ master ] | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 # v2 minimum required | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- uses: axel-op/googlejavaformat-action@v3 | |
with: | |
args: "--replace" |