mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-12-21 03:29:30 +00:00
29 lines
624 B
YAML
29 lines
624 B
YAML
name: Continuous integration
|
|
|
|
on:
|
|
push:
|
|
branches: ['**']
|
|
|
|
jobs:
|
|
lint-and-test:
|
|
name: Unit test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: '22'
|
|
cache: sbt
|
|
|
|
- name: Check linting and formatting
|
|
run: sbt 'scalafixAll --check' scalafmtSbtCheck scalafmtCheck
|
|
env:
|
|
GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}
|
|
|
|
- name: Unit test
|
|
run: sbt +test
|
|
env:
|
|
GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}
|