Skip to content

Bump guibranco/github-file-reader-action-v2 from 2.2.721 to 2.2.723 #55

Bump guibranco/github-file-reader-action-v2 from 2.2.721 to 2.2.723

Bump guibranco/github-file-reader-action-v2 from 2.2.721 to 2.2.723 #55

Workflow file for this run

name: Rust Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Cache Cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Build the project
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose