Skip to content

Add CI Pipeline and Automatic Release Tagging #11

Add CI Pipeline and Automatic Release Tagging

Add CI Pipeline and Automatic Release Tagging #11

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Elixir
uses: actions/setup-elixir@v1
with:
elixir-version: 1.15.2
otp-version: 26.0.1
- name: Install Dependencies
run: mix deps.get
- name: Run Tests
run: mix test
- name: Deploy
run: mix release