mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-01-19 18:14:44 +00:00
* Add AvatarActor: Responsible for managing the session's avatar object * Convert Avatar object to case class * Add persistence for BEP, CEP, implants, certs and cosmetics * Add cosmetic chat commands and handle UI packet * Add /setbr, /setcr, /certadd, /addbep, /addcep GM commands * Convert zone maps to JSON * Update to Scala 2.13.3 and fix warnings * Fix MAX cooldowns not being applied when purchased manually * Normalize database table names to singular * Add docker image build
65 lines
2 KiB
YAML
65 lines
2 KiB
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
postgres:
|
|
image: postgres
|
|
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@v2
|
|
with:
|
|
path: |
|
|
~/.ivy2/cache
|
|
~/.sbt
|
|
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup Scala
|
|
uses: olafurpg/setup-scala@v5
|
|
- name: Install pscrypto
|
|
run: curl -L https://github.com/psforever/PSCrypto/releases/download/v1.1/pscrypto-lib-1.1.zip | jar vx
|
|
- name: Run migrations
|
|
run: sbt "pslogin/run migrate"
|
|
- name: Run build
|
|
run: sbt 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@v2
|
|
with:
|
|
name: pslogin.zip
|
|
path: target/pslogin*.zip
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Inject slug/short variables
|
|
uses: rlespinasse/github-slug-action@v2.x
|
|
- name: Set variables
|
|
run: |
|
|
echo "::set-env name=REPOSITORY::$(echo $GITHUB_REPOSITORY | tr '[A-Z]' '[a-z]')"
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v1.1.0
|
|
with:
|
|
username: ${{ github.actor }}
|
|
password: ${{ github.token }}
|
|
registry: docker.pkg.github.com
|
|
repository: ${{ env.REPOSITORY }}/server
|
|
tag_with_sha: true
|
|
tag_with_ref: true |