summaryrefslogtreecommitdiff
path: root/.github/workflows/elixir.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/elixir.yml')
-rw-r--r--.github/workflows/elixir.yml38
1 files changed, 0 insertions, 38 deletions
diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml
deleted file mode 100644
index e42307f..0000000
--- a/.github/workflows/elixir.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-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