Skip to content

#4

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
fail-fast: false
env:

Check failure on line 13 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 13, Col: 7): Unexpected value 'env'
CODESPACES: True
matrix:
variant: [devcontainer, wsl, gnome]
os: [ubuntu-20.04, ubuntu-22.04]
include:
- variant: devcontainer
os: alpine
- variant: devcontainer
os: debian
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
scripts/test.sh --variant "${{ matrix.variant }}" --os "${{ matrix.os }}"