add 2024 to copyright #35
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: Headers | |
on: | |
pull_request: | |
permissions: {} | |
jobs: | |
check-java-formatted: | |
name: Check Java code is formatted | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Cache Coursier cache | |
uses: coursier/[email protected] | |
# Not sure why need to do docs/javafmtCheckAll, figure out later | |
- name: Check headers | |
run: sbt javafmtCheckAll docs/javafmtCheckAll |