Current section

Files

Jump to
live_guard .github workflows elixir.yml
Raw

.github/workflows/elixir.yml

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Elixir CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
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.16.0'
otp-version: '26.2.1'
- name: Restore dependencies cache
id: elixir-deps-cache
uses: actions/cache@v2
with:
path: |
**/deps
key: |
${{ runner.os }}-elixir-deps-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-elixir-deps-
- name: Restore build cache
id: elixir-build-cache
uses: actions/cache@v2
with:
path: |
**/_build
key: |
${{ runner.os }}-elixir-build-${{ hashFiles('**/mix.lock') }}-${{ hashFiles( '**/lib/**/*.{ex,eex}', '**/config/*.exs', '**/mix.exs' ) }}
restore-keys: |
${{ runner.os }}-elixir-build-${{ hashFiles('**/mix.lock') }}-
${{ runner.os }}-elixir-build-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test