Skip to content

Use bundled compiler #4

Use bundled compiler

Use bundled compiler #4

Workflow file for this run

name: Build and Test
on:
pull_request:
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: sccache
CC: sccache clang
CXX: sccache clang++
jobs:
test:
name: build-and-test
runs-on: ubuntu-latest
steps:

Check failure on line 16 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
- name: Checkout code
uses: actions/checkout@v4
- name: Print toolchain version
run: rustup show active-toolchain
- name: Setup sccache
uses: mozilla-actions/[email protected]
timeout-minutes: 5
continue-on-error: true
- name: Build
run: make check
- name: Test
run: make test