Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

chore(deps-dev): bump @types/react from 18.2.15 to 18.2.16 in /nextjs #391

chore(deps-dev): bump @types/react from 18.2.15 to 18.2.16 in /nextjs

chore(deps-dev): bump @types/react from 18.2.15 to 18.2.16 in /nextjs #391

Workflow file for this run

name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
env:
CARGO_INCREMENTAL: 1 # to enable incremental "release" build
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # fetch all history
- name: Install Python
uses: actions/setup-python@v2
- name: Restore mtime
run: python .github/tools/git-restore-mtime.py
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose