Skip to content

install lld, test on linux #3

install lld, test on linux

install lld, test on linux #3

Workflow file for this run

name: Simple debug build
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v3
- name: Install LLVM (LLD, importantly)
uses: KyleMayes/install-llvm-action@v1.9.0
with:
version: 16
- name: Build
run: cargo build