Skip to content

Fix POST /ratings

Fix POST /ratings #7

Workflow file for this run

name: bnaclient
defaults:
run:
working-directory: bnaclient
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: extractions/setup-just@dd310ad5a97d8e7b41793f8ef055398d51ad4de6 # v2
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
- name: Install cargo progenitor
run: cargo install cargo-progenitor
- name: Regenerate the specifications and the bnaclient
run: just regenerate-all-no-cargo
- name: Ensure there are no changes
run: test -z "$(git status --porcelain)" || (git status; git diff; false)
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2