Skip to content

Use Source Serif 4 instead of Open Sans in the docs (closes #242) #325

Use Source Serif 4 instead of Open Sans in the docs (closes #242)

Use Source Serif 4 instead of Open Sans in the docs (closes #242) #325

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build-and-test-windows:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: true
- name: Build interpreter and extensions
run: .\build.ps1
- name: Run tests
run: .\tests\test.ps1
build-and-test-ubuntu:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang lld powershell
- name: Build interpreter and extensions
shell: pwsh
run: ./build.ps1
- name: Run tests
shell: pwsh
run: ./tests/test.ps1