Updating GHES workflows

This commit is contained in:
GitHub Actions
2022-10-28 10:35:26 +00:00
parent a55693d47e
commit 92e51bbc9a
3 changed files with 0 additions and 33 deletions
-6
View File
@@ -1,6 +0,0 @@
{
"name": "Scala",
"description": "Build and test a Scala project with SBT.",
"iconName": "scala",
"categories": ["Continuous integration", "Scala", "Java"]
}
-26
View File
@@ -1,26 +0,0 @@
name: Scala CI
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests
run: sbt test