Skip to content

Clean up ui for simple upload (#34) #96

Clean up ui for simple upload (#34)

Clean up ui for simple upload (#34) #96

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate API client
uses: openapi-generators/openapitools-generator-action@v1
with:
generator: rust
openapi-file: src/tellers_api/openapi.tellers_public_api.yaml
generator-tag: v7.17.0
command-args: >
-o generated/tellers_api_client
--additional-properties=packageName=tellers_api_client,packageVersion=0.1.0,library=reqwest,supportAsync=true,reqwestClient=true
--skip-validate-spec --strict-spec=false
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose