Skip to content

WIP

WIP #3

Workflow file for this run

name: CI
on:
push:
# branches:
# - master
pull_request:
jobs:
test:
name: Test suite
runs-on: ubuntu-20.04
strategy:
matrix:
otp: "24"

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

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 16, Col: 14): Unexpected value '24' .github/workflows/ci.yml (Line: 17, Col: 17): Unexpected value '1.14'
elixir: "1.14"
runtime_config: [true, false]
include:
- otp: "20"
elixir: "1.6"
runtime_config: false
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v3
- name: Set up Elixir environment
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Install dependencies
run: mix deps.get --only test
- name: Run tests
run: mix test
env:
STATIX_TEST_RUNTIME_CONFIG: ${{ matrix.runtime_config }}