Skip to content

adopt HLClock 1.1, drop autogenerate + HCLID #1

adopt HLClock 1.1, drop autogenerate + HCLID

adopt HLClock 1.1, drop autogenerate + HCLID #1

Workflow file for this run

name: Elixir CI
on:
pull_request:
branches: [master]
jobs:
test:
name: Elixir ${{ matrix.elixir }} / OTP ${{ matrix.otp }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
elixir: ["1.18", "1.19"]
otp: ["27", "28"]
steps:
- uses: actions/checkout@v5
- uses: erlef/setup-beam@v1
with:
elixir-version: "${{ matrix.elixir }}"
otp-version: "${{ matrix.otp }}"
- name: Install dependencies
run: mix deps.get
- name: Compile with warnings as errors
run: mix compile --warnings-as-errors --force
- name: Check formatting
run: mix format --check-formatted
- name: Run tests
run: mix test