Skip to content

chore: Release gotify version 0.3.0 #11

chore: Release gotify version 0.3.0

chore: Release gotify version 0.3.0 #11

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
strategy:
matrix:
features: ['""', "app", "client", "full"]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy --features ${{ matrix.features }}
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features