Skip to content

Fix symbol transform order #70

Fix symbol transform order

Fix symbol transform order #70

Workflow file for this run

---
name: "CI: Rust"
on:
push:
branches:
- main
pull_request:
branches:
- "*"
paths:
- "ainu-utils/**"
defaults:
run:
working-directory: ainu-utils
# https://github.com/taiki-e/cargo-llvm-cov/tree/main?tab=readme-ov-file#continuous-integration
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --codecov --output-path codecov.json
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: aynumosir/ainu-utils