upgrade libs and setup CI #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
pull_request: | |
branches: master | |
jobs: | |
build-and-test: | |
name: Build and test | |
runs-on: ubuntu-latest | |
container: elixir:1.10-alpine | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install build dependencies | |
run: | | |
export GOOGLE_SECRET_JSON=fake_value | |
apk add --update bash openssl git | |
mix local.hex --force && mix local.rebar --force | |
- name: Install elixir dependencies | |
run: mix deps.get | |
- name: Run CI Tests | |
env: | |
MIX_ENV: test | |
run: mix cxi |