Skip to content

Merge pull request #169 from dwyl/dependabot/hex/plug_cowboy-2.7.1 #261

Merge pull request #169 from dwyl/dependabot/hex/plug_cowboy-2.7.1

Merge pull request #169 from dwyl/dependabot/hex/plug_cowboy-2.7.1 #261

Workflow file for this run

name: Elixir CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
services:
postgres:
image: postgres:12
ports: ['5432:5432']
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
# Need this for the nested git submodule:
- name: include test-repo stub Git submodule in base repo
run: git submodule update --init
- name: Setup git user for Git ops
run: |
git config --global user.name "Al Ex"
git config --global user.email "[email protected]"
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: '1.14.2' # Define the elixir version [required]
otp-version: '24.3.4' # Define the OTP version [required]
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run Tests
run: mix coveralls.json
env:
MIX_ENV: test
GITEA_URL: gitea-server.fly.dev
GITEA_ACCESS_TOKEN: ${{ secrets.GITEA_ACCESS_TOKEN }}
GIT_TEMP_DIR_PATH: $GITHUB_WORKSPACE
SECRET_KEY_BASE: 2PzB7PPnpuLsbWmWtXpGyI+kfSQSQ1zUW2Atz/+8PdZuSEJzHgzGnJWV35nTKRwx
ENCRYPTION_KEYS: 'nMdayQpR0aoasLaq1g94FLba+A+wB44JLko47sVQXMg=,L+ZVX8iheoqgqb22mUpATmMDsvVGtafoAeb0KN5uWf0='
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1