ff97d258f0
Rather than requiring a traditional crontab install, the app now leverages quantum-core (link below) to schedule the instance update/sync task every 5 minutes. Some updates as a result: - The new job is scheduled at runtime in server.ex. - The update.exs script was refactored to be compiled along with the rest of the app as instances.ex. - Scheduler and Server modules were added for creating and executing the new update task - All shell scripts were removed, as they are no longer needed https://github.com/quantum-elixir/quantum-core
41 lines
876 B
YAML
41 lines
876 B
YAML
name: Elixir CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
name: Build and test
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Elixir
|
|
uses: erlef/setup-elixir@885971a72ed1f9240973bd92ab57af8c1aa68f24
|
|
with:
|
|
elixir-version: '1.12.3'
|
|
otp-version: '24'
|
|
|
|
- name: Restore dependencies cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: deps
|
|
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
|
|
restore-keys: ${{ runner.os }}-mix-
|
|
|
|
- name: Start Redis
|
|
uses: supercharge/redis-github-action@1.2.0
|
|
|
|
- name: Install dependencies
|
|
run: mix deps.get
|
|
|
|
- name: Initialize services
|
|
run: FARSIDE_TEST=1 mix run -e Farside.Instances.sync
|
|
|
|
- name: Run tests
|
|
run: FARSIDE_TEST=1 mix test --trace
|