mirror of
https://github.com/PCSX2/web-api.git
synced 2026-01-31 01:15:16 +01:00
* workers: init * workers: d1 initial work * workers: resuming work, simplified schema * api: flesh out the majority of critical features * api: get rid of the old implementation * db: seed database with current releases * db: break seed files up, too much for a single stdout buffer * api: support version diff'ing * d1: debugging insert issue * api: fix insert issue (missing `await`s) and explicitly cache to avoid invocations * api: append CORS headers for requests originating from `pcsx2.net` * api: update seed data and fix response data * api: optimize DB indexes and add caching * api: update page rule cache when a release is added/deleted/modified * api: most functionality ported over to rocket.rs * api: finish off core implementation * api: dockerize * api: cleaning up TODOs * v1: remove some of the old implementation * v2: small script to pull release data, update DB seed * v2: minor cleanup * v2: finalize v1 -> v2 transition * v2: synchronize db on startup * sqlx: commit sql query metadata * v2: handful of bug fixes and v1 parity adjustments * v2: some repo house cleaning * ci: add CI workflows * ci: finalize ci implementation
49 lines
1.0 KiB
YAML
49 lines
1.0 KiB
YAML
name: 📝 Linter
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
formatting:
|
|
name: Formatting
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Rust Stable
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
components: clippy
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
name: Cache Rust Build
|
|
with:
|
|
shared-key: web-api-build-ubuntu-latest
|
|
|
|
- name: Check Rust formatting
|
|
run: cargo fmt --all --check
|
|
|
|
linter:
|
|
name: Linter
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
name: Cache Rust Build
|
|
with:
|
|
shared-key: web-api-build-${{ matrix.platform }}
|
|
|
|
- uses: actions-rs/clippy-check@v1
|
|
name: Rust Linting - Clippy
|
|
continue-on-error: true
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
args: --all-features --manifest-path Cargo.toml
|