Skip to content

Ignore the cobertura.xml file #10

Ignore the cobertura.xml file

Ignore the cobertura.xml file #10

Workflow file for this run

# Quick feedback for unit tests on non-main commits.
#
name: Commit Cycle
on:
push:
branches-ignore:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Compile
run: |
cargo install dioxus-cli
dx build --verbose
- name: Lint
run: cargo clippy
- name: Test
run: cargo test --verbose -- --show-output