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

Merge pull request #9 from valentinegb/dependabot/cargo/serde-1.0.185 #35

Merge pull request #9 from valentinegb/dependabot/cargo/serde-1.0.185

Merge pull request #9 from valentinegb/dependabot/cargo/serde-1.0.185 #35

Workflow file for this run

name: Rust
on:
push:
branches: [ "rewrite" ]
pull_request:
branches: [ "rewrite" ]
env:
CARGO_TERM_COLOR: always
MODIO_API_KEY: ${{ secrets.MODIO_API_KEY }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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