Skip to content

fix(build): remove extra stuff from CI build #46

fix(build): remove extra stuff from CI build

fix(build): remove extra stuff from CI build #46

Workflow file for this run

name: Rust
on: [push, workflow_dispatch]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/spmadden/irox-dev:latest
steps:
- uses: actions/checkout@v4
- name: CI Build
run: just ci
testecov:
name: Test w/ Code Coverage
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
version: '0.22.0'
- name: Upload to codecov.io
uses: codecov/codecov-action@v3.1.4
with:
token: ${{secrets.CODECOV_TOKEN}}
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: cobertura.xml