mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2025-01-02 02:31:38 +00:00
20 lines
395 B
YAML
20 lines
395 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 }}
|