Add up-to-date libraries for FreeBSD on amd64 and i386 archs #488
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: CI | |
on: | |
pull_request: | |
paths: | |
- '**.scala' | |
- '**.java' | |
- '**.sbt' | |
- '.github/workflows/*.yml' | |
- '**.so' | |
- '**.dll' | |
- 'src/main/resources/**' | |
- 'project/build.properties' | |
push: | |
branches: | |
- master | |
- main | |
paths: | |
- '**.scala' | |
- '**.java' | |
- '**.sbt' | |
- '.github/workflows/*.yml' | |
- 'src/main/resources/org/xerial/snappy/**' | |
- 'project/build.properties' | |
jobs: | |
code_format: | |
name: code format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: scalafmt test | |
run: ./sbt scalafmtCheckAll | |
test-jdk: | |
strategy: | |
matrix: | |
version: [ '8', '11', '17', '21' ] | |
name: test jdk${{ matrix.version }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.version }} | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache | |
key: ${{ runner.os }}-jdk${{ matrix.version }}-${{ hashFiles('**/*.sbt') }} | |
restore-keys: ${{ runner.os }}-jdk${{ matrix.version }}- | |
- name: Test | |
run: ./sbt test |