Skip to content

Maybe this work

Maybe this work #7

Workflow file for this run

name: CI
"on":
- push
jobs:
test:
name: Build and test
runs-on: large-runner
container:
image: "hexpm/elixir:1.18.1-erlang-27.2-ubuntu-noble-20241118.1"
steps:
- uses: actions/checkout@v4
- name: Setup Elixir
run: |
mix local.hex --force
mix local.rebar --force
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test