Skip to content

Disable Sass option in ESBuild tests #638

Disable Sass option in ESBuild tests

Disable Sass option in ESBuild tests #638

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
tags-ignore:
- "*"
pull_request:
branches: [ "main" ]
jobs:
build:
name: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
check-latest: true
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...