Skip to content

Update otp and elixir version in github action #238

Update otp and elixir version in github action

Update otp and elixir version in github action #238

Workflow file for this run

name: Server
on:
push:
paths:
- "server/**"
- ".github/workflows/server.yml"
pull_request:
paths:
- "server/**"
- ".github/workflows/server.yml"
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: 26.0
elixir-version: 1.16.0
- name: Start CouchDB
run: docker-compose -f docker-compose.yml --env-file .env_template up -d
working-directory: server
- name: Install inotify-tools
run: sudo apt-get install inotify-tools
- name: Install FieldHub dependencies
run: mix deps.get
working-directory: server
- name: Run FieldHub tests
run: mix test
working-directory: server