Skip to content

Commit

Permalink
see if this fixes ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtbuilds committed Dec 14, 2023
1 parent 2364748 commit c53bd08
Showing 3 changed files with 9 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -12,15 +12,13 @@ jobs:
contents: read

steps:
- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v1
- run: cargo install just
- run: just test
- run: just ci

publish:
runs-on: ubuntu-latest
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -9,6 +9,11 @@ readme = "README.md"
license = "MIT"
repository = "https://github.com/libninjacom/plaid-rs"

[profile.ci]
debug = 0
incremental = false
inherits = "dev"

[dependencies]
base64 = "0.21.0"
futures = "0.3.25"
8 changes: 3 additions & 5 deletions Justfile
Original file line number Diff line number Diff line change
@@ -51,11 +51,9 @@ patch: test
doc:
cargo doc --no-deps --open

test-full:
#!/usr/bin/env bash -euxo pipefail
for file in $(ls examples); do
cargo run --example "$(basename "$file" .rs)"
done
ci:
cargo test --profile ci --no-run
cargo test --profile ci

transform:
req https://raw.githubusercontent.com/plaid/plaid-openapi/master/2020-09-14.yml > openapi.yaml

0 comments on commit c53bd08

Please sign in to comment.