fix branch name in CI #236
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: Tests | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
name: Run tests (Elixir ${{matrix.elixir}}, OTP ${{matrix.otp}}) | |
strategy: | |
matrix: | |
include: | |
- elixir: 1.7 | |
otp: 21.3 | |
- elixir: 1.14 | |
otp: 25.3 | |
lint: lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Elixir | |
uses: erlef/setup-elixir@v1 | |
with: | |
elixir-version: ${{ matrix.elixir }} | |
otp-version: ${{ matrix.otp }} | |
- name: Restore deps and _build cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
deps | |
_build | |
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }} | |
- name: Install dependencies | |
run: mix deps.get --only test | |
- name: Check source code format | |
run: mix format --check-formatted | |
if: ${{ matrix.lint }} | |
- name: Remove compiled application files | |
run: mix clean | |
- name: Compile dependencies | |
run: mix compile | |
if: ${{ !matrix.lint }} | |
env: | |
MIX_ENV: test | |
- name: Compile & lint dependencies | |
run: mix compile --warnings-as-errors | |
if: ${{ matrix.lint }} | |
env: | |
MIX_ENV: test | |
- name: Run tests | |
run: mix test |