Skip to content

Commit

Permalink
feat: basic CI (#1)
Browse files Browse the repository at this point in the history
base blocks for the CI
  • Loading branch information
datYori authored Sep 6, 2024
2 parents 29c0d06 + a16cf7a commit 449f193
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI
on:
pull_request:
paths:
- .github/workflows/ci.yaml
- .sbtopts
- build.sbt
- .scalafmt.conf
- project/**
- src/**

defaults:
run:
shell: bash

env:
GITHUB_TOKEN: ${{ secrets.READ_PACKAGES }}

jobs:
code-check:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- run: sbt headerCheckAll
test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- run: sbt test

0 comments on commit 449f193

Please sign in to comment.