Skip to content

Merge pull request #11 from 46ki75/hotfix/workflows #21

Merge pull request #11 from 46ki75/hotfix/workflows

Merge pull request #11 from 46ki75/hotfix/workflows #21

Workflow file for this run

name: Unit Test
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: install Rustc
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Run Unit Tests
run: cargo test