Skip to content

style: changed orgs func and test use token #26

style: changed orgs func and test use token

style: changed orgs func and test use token #26

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
env:
GITHUB_TOKEN=${{ secrets.TOKEN }}
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-build-${{ hashFiles('**/Cargo.lock') }}
- run: cargo build --manifest-path ./src-tauri/Cargo.toml --verbose
- run: cargo test --manifest-path ./src-tauri/Cargo.toml --verbose