Skip to content

Wrap odyssey activity picker in live view component #83

Wrap odyssey activity picker in live view component

Wrap odyssey activity picker in live view component #83

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Erlang and Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: '1.18.4'
otp-version: '28.0.1'
- name: Cache deps
uses: actions/cache@v3
with:
path: |
deps
_build
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Check formatting
run: mix format --check-formatted
- name: Run tests with coverage
run: mix coveralls.github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}