Skip to content

build(deps): bump rand from 0.10.0 to 0.10.1 in /actix (#119) #81

build(deps): bump rand from 0.10.0 to 0.10.1 in /actix (#119)

build(deps): bump rand from 0.10.0 to 0.10.1 in /actix (#119) #81

Workflow file for this run

name: Tests
on:
push:
branches: ["*"]
paths: ["actix/**"]
pull_request:
branches: ["*"]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./actix
steps:
- uses: actions/checkout@v6
- name: Cache Dependencies
uses: actions/cache@v5
with:
path: |
actix/target
actix/.cargo
key: cargo-${{ runner.os }}-${{ hashFiles('actix/Cargo.lock') }}
restore-keys: |
cargo-${{ runner.os }}-
- name: Build
run: cargo build
- name: Run tests
run: cargo test