Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Implement full CSS Color 4 parsing and color-profile aliases #1871

Implement full CSS Color 4 parsing and color-profile aliases

Implement full CSS Color 4 parsing and color-profile aliases #1871

Workflow file for this run

name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: ["*"]
pull_request:
branches: [main]
jobs:
linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Cache Bazel
uses: actions/cache@v4
with:
path: |
~/.cache/bazel
key: ${{ runner.os }}-bazel-${{ hashFiles('.bazelversion', '.bazelrc', 'MODULE.bazel') }}
restore-keys: |
${{ runner.os }}-bazel-
- name: Build
run: |
bazelisk build //...
- name: Test
run: |
bazelisk test --test_output=errors //...
macos:
runs-on: macos-15
steps:
- uses: actions/checkout@v6
- name: Cache Bazel
uses: actions/cache@v4
with:
path: |
/private/var/tmp/_bazel_runner/
key: ${{ runner.os }}-bazel-${{ hashFiles('.bazelversion', '.bazelrc', 'MODULE.bazel') }}
restore-keys: |
${{ runner.os }}-bazel-
- name: Build
run: |
bazelisk build //...
- name: Test
run: |
bazelisk test --test_output=errors //...