f0150c6160
Remove extra redirection. See https://github.com/erlef/setup-beam/issues/20
38 lines
843 B
YAML
38 lines
843 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@v3
|
|
|
|
- name: Set up Elixir
|
|
uses: erlef/setup-beam@v1
|
|
with:
|
|
elixir-version: '1.12.3'
|
|
otp-version: '24'
|
|
|
|
- name: Restore dependencies cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: deps
|
|
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
|
|
restore-keys: ${{ runner.os }}-mix-
|
|
|
|
- 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
|
|
|
|
- name: Run tests
|
|
run: FARSIDE_TEST=1 FARSIDE_SERVICES_JSON=services-full.json mix test --trace
|