Skip to content

Merge pull request #8 from 46ki75/chore/github-actions #5

Merge pull request #8 from 46ki75/chore/github-actions

Merge pull request #8 from 46ki75/chore/github-actions #5

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