chore(deps): bump swoosh from 1.12.0 to 1.14.2 #98
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: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Elixir ${{ matrix.elixir }} / OTP ${{ matrix.otp }} | |
strategy: | |
matrix: | |
elixir: ['1.13'] | |
otp: ['24.x'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup BEAM | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: ${{ matrix.elixir }} | |
otp-version: ${{ matrix.otp }} | |
- name: Restore dependencies cache | |
uses: actions/cache@v2 | |
id: cache-elixir-deps | |
with: | |
path: | | |
deps | |
_build | |
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}-${{ matrix.otp }} | |
- name: Install Dependencies | |
if: steps.cache-elixir-deps.outputs.cache-hit != 'true' | |
run: MIX_ENV=test mix do deps.get, deps.compile, compile | |
- run: mix format --check-formatted | |
if: matrix.elixir == '1.13' | |
- name: Run Tests | |
run: mix test |