mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-01-19 18:14:44 +00:00
* update github workflow to fix broken pipeline * switch to sbtn command, seems like no sbt -> sbtn link is provided anymore might just work like is... * nope, not the link is missing, it does not pack sbt at all does switching to sbt proper work? * update JVM to latest LTS * Revert "update JVM to latest LTS" This reverts commit 75baaa52e86f88d596d98d656824672aa4e25cdf.
60 lines
1.3 KiB
YAML
60 lines
1.3 KiB
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
types: [ opened, reopened, synchronize ]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
postgres:
|
|
image: postgres:12.8
|
|
env:
|
|
POSTGRES_DB: psforever
|
|
POSTGRES_USER: psforever
|
|
POSTGRES_PASSWORD: psforever
|
|
options: >-
|
|
--health-cmd pg_isready
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
ports:
|
|
- 5432:5432
|
|
steps:
|
|
- name: Cache SBT
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.ivy2/cache
|
|
~/.sbt
|
|
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Scala
|
|
uses: coursier/setup-action@v1
|
|
with:
|
|
jvm: adopt:11
|
|
apps: sbt
|
|
|
|
- name: Run migrations
|
|
run: sbt "server/run migrate"
|
|
|
|
- name: Run build
|
|
run: sbt server/packArchiveZip
|
|
|
|
- name: Run tests
|
|
run: sbt coverage test:compile quiet:test coverageReport
|
|
|
|
- name: Upload coverage
|
|
run: bash <(curl -s https://codecov.io/bash)
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: server.zip
|
|
path: server/target/psforever-server-*.zip
|