chore: test 2022 scala #6
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: AoC 2022 Workflow | |
on: [push] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: curl https://raw.githubusercontent.com/scalameta/scalafmt/master/bin/install-scalafmt-native.sh | bash -s -- $VERSION $INSTALL_LOCATION | |
env: | |
VERSION: 3.6.1 | |
INSTALL_LOCATION: . | |
- run: ls | |
- run: ./scalafmt-native | |
- run: ./scalafmt-native --version | |
- run: ./scalafmt-native src/*.scala |