Skip to content

🚧 Initial Telegram bot API client #17

🚧 Initial Telegram bot API client

🚧 Initial Telegram bot API client #17

Workflow file for this run

name: 🧪 Check
on:
push:
branches:
- main
- dev
tags-ignore:
- '**'
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: "always"
RUSTC_WRAPPER: "sccache"
SCCACHE_GHA_ENABLED: "true"
jobs:
check:
name: 🧪 Check
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
- name: ⚡️ Rust Cache
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: ⚡️ Shared Compilation Cache
uses: mozilla-actions/sccache-action@v0.0.4
- name: 🧪 Install coverage tools
uses: taiki-e/install-action@cargo-llvm-cov
- name: 🧪 Test
run: cargo llvm-cov --all-features --workspace --codecov --output-path=codecov.json
- name: 📤 Upload coverage
uses: codecov/codecov-action@v4.0.1
with:
files: codecov.json
token: ${{ secrets.CODECOV_TOKEN }}
slug: eigenein/mrktpltsbot
- name: 💬 Clippy
uses: giraffate/clippy-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
clippy_flags: -- -Dwarnings
reporter: github-check
continue-on-error: true