Skip to content

Adds ability to get group by email nickname (#22) #47

Adds ability to get group by email nickname (#22)

Adds ability to get group by email nickname (#22) #47

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.17.1, 1.18.3]
otp: [25.3, 26.2, 27.0]
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Restore deps cache
uses: actions/cache@v4
with:
path: deps
key: deps-${{ runner.os }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('**/mix.lock') }}
restore-keys: deps-${{ runner.os }}-${{ matrix.elixir }}-${{ matrix.otp }}
- name: Restore build cache
uses: actions/cache@v4
with:
path: _build
key: build-${{ runner.os }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('**/mix.lock') }}
restore-keys: build-${{ runner.os }}-${{ matrix.elixir }}-${{ matrix.otp }}
- name: Install dependencies
run: mix deps.get
- name: Compile project
run: mix compile --warnings-as-errors
- name: Run tests
run: mix test --exclude integration