Skip to content

feat: add date picker to stats and standings screens and other QOL updates #83

feat: add date picker to stats and standings screens and other QOL updates

feat: add date picker to stats and standings screens and other QOL updates #83

Workflow file for this run

# Based on https://github.com/actions-rs/example/blob/master/.github/workflows/quickstart.yml
name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
checks:
name: Cargo checks
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Sync Rustup toolchain
run: rustup show
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Sync Rustup toolchain
run: rustup show
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test