webweg 0.9.2

An asynchronous API wrapper for UCSD's WebReg course enrollment system.
Documentation
name: Rust

on:
  push:
    branches: [ "stable" ]
  pull_request:
    branches: [ "stable" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build_default:
    name: Compilation/Style/Tests (Default)
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Build
      run: cargo build --verbose
    - name: Run All Tests
      run: cargo test --verbose
    - name: Clippy
      run: cargo clippy
    - name: Format
      run: cargo fmt --check

  build_multi:
    name: Compilation/Style/Tests (Multi)
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - name: Build
        run: cargo build --features multi --verbose
      - name: Run All Tests
        run: cargo test --features multi --verbose
      - name: Clippy
        run: cargo clippy --features multi
      - name: Format
        run: cargo fmt --check