Skip to content

refactor: make github_language_loader sequential with --wait-ms cooldown #6

refactor: make github_language_loader sequential with --wait-ms cooldown

refactor: make github_language_loader sequential with --wait-ms cooldown #6

Workflow file for this run

name: Test
on:
push:
branches: ["**"]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo registry & build artifacts
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Run tests
run: cargo test