Skip to content

Commit

Permalink
Create scala.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiqian authored Aug 14, 2024
1 parent de29f53 commit 3a018e0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Phaker CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
java: [ '8', '11' ]

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
cache: 'sbt'
- name: Package
run: sbt package

0 comments on commit 3a018e0

Please sign in to comment.