Skip to content

add: release workflow #11

add: release workflow

add: release workflow #11

Workflow file for this run

name: CI
on:
push:
branches: [main]
jobs:
build:
runs-on: windows-latest
timeout-minutes: 15
steps:
- name: Clone repo
uses: actions/checkout@v4
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-${{ hashFiles('**/Cargo.lock') }}
# key: cargo-${{ hashFiles('Cargo.toml') }}
- name: Build
run: cargo build
- name: Test
run: cargo test