mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-09-26 11:13:20 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v1...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
37 lines
579 B
YAML
37 lines
579 B
YAML
name: Test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- quality_assurance
|
|
- cu_quality_assurance
|
|
|
|
jobs:
|
|
code:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Set up JDK 18
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 18
|
|
- name: Test with Gradle
|
|
run: ./gradlew --no-daemon test
|
|
|
|
docker_build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- run: |
|
|
docker build .
|