farside/.github/workflows/elixir.yml

39 lines
843 B
YAML
Raw Normal View History

2021-10-27 03:21:00 +00:00
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@v3
2021-10-27 03:21:00 +00:00
- name: Set up Elixir
uses: erlef/setup-beam@v1
2021-10-27 03:21:00 +00:00
with:
elixir-version: '1.12.3'
otp-version: '24'
2021-10-27 03:21:00 +00:00
- name: Restore dependencies cache
uses: actions/cache@v3
2021-10-27 03:21:00 +00:00
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
2021-10-27 03:21:00 +00:00
- name: Install dependencies
run: mix deps.get
- name: Initialize services
run: FARSIDE_TEST=1 FARSIDE_SERVICES_JSON=services-full.json mix run -e Farside.Instances.sync
2021-10-27 03:21:00 +00:00
- name: Run tests
run: FARSIDE_TEST=1 FARSIDE_SERVICES_JSON=services-full.json mix test --trace