Skip to content

Move from CircleCI to Github Actions #1

Move from CircleCI to Github Actions

Move from CircleCI to Github Actions #1

Workflow file for this run

on: push
jobs:
test:
strategy:

Check failure on line 5 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 5, Col: 5): Required property is missing: runs-on
matrix:
elixir-version: [1.15, 1.14, 1.13]
otp-version: [26, 25, 24]
name: Tests
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir-version }}
otp-version: ${{ matrix.otp-version }}
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: mix format --check-formatted
if: ${{ matrix.elixir-version == 1.15 && matrix.otp-version == 26 }}
- run: mix test