Skip to content

Commit

Permalink
Add a workflow that at least compiles the codes
Browse files Browse the repository at this point in the history
  • Loading branch information
rayrobdod committed Dec 27, 2023
1 parent 0dbff53 commit 2e4828a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Check
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 21
- name: compile
run: find \( -name day\*.scala -o -name part\*.scala \) -print -execdir scala-cli compile \{\} \;

0 comments on commit 2e4828a

Please sign in to comment.