wheel-picker 1.0.3

Simple cli tool to make and randomly pick from a wheel.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
on:
  push:
    paths:
      - "Cargo.toml"
      - "pyproject.toml"
      - "src/**/*.rs"
      - ".github/workflows/**"

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: Swatinem/rust-cache@v2
      - uses: dtolnay/rust-toolchain@nightly

      - name: Check
        run: cargo check