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