Skip to content

fix: Fix rendering of active aside link #14

fix: Fix rendering of active aside link

fix: Fix rendering of active aside link #14

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
NODOCKER: true
jobs:
build:
name: PHP ${{ matrix.php-versions }} CI on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.0', '8.1', '8.2']
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install the dependencies
run: make install
- name: Run the linters
run: make lint