Skip to content

add average temp

add average temp #4

Workflow file for this run

name: check
on:
push:
branches:
- '**'
paths:
- .github/workflows/*.yml
- Cargo.toml
- src/**
jobs:
check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
- run: rustup update --no-self-update stable && rustup default stable
- run: cargo fmt --check
- run: cargo check --release --locked