Skip to content

Bump version to 0.6.1 #55

Bump version to 0.6.1

Bump version to 0.6.1 #55

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Cancel any in-flight jobs for the same PR/branch so there's only one active
# at a time
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci_test:
uses: ./.github/workflows/test.yml
with:
ufbx-rust-ref: ${{ github.ref }}
ci_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: taiki-e/install-action@v2
with:
tool: grcov
- name: Install Rust nightly
run: rustup toolchain install nightly
- name: Setup llvm-tools-preview
run: rustup component add llvm-tools-preview
- name: Generate coverage
run: bash misc/test_coverage.sh
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: build/coverage.lcov
verbose: true