Skip to content

Initial edge updates #341

Initial edge updates

Initial edge updates #341

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --workspace --html
- uses: actions/upload-artifact@v4
with:
name: coverage
path: target/llvm-cov/html/*
overwrite: true