Skip to content

CI

CI #14

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
workflow_dispatch:
schedule:
- cron: '0 8 * * 1'
jobs:
ci:
name: CI
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
checks: write
pull-requests: write
security-events: write
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Rust
run: |
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
source "$HOME/.cargo/env"
# REF: https://crates.io/crates/cargo2junit
- name: Install Cargo-to-JUnit
run: cargo install cargo2junit
- name: Cargo Build
run: cargo build
- name: Cargo Test
run: cargo test -- -Z unstable-options --format json --report-time | cargo2junit > target/debug/results.xml
# REF: https://github.com/marketplace/actions/publish-test-results
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: |
target/debug/*.xml