Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/runas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ jobs:
cargo --version
pg_config --version

- name: Install rustfmt & clippy
run: |
rustup component add rustfmt
rustup component add clippy

- name: Install cargo pgrx
run: cd cargo-pgrx && cargo install --path . --debug

Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ jobs:
- name: Print sccache stats (before)
run: sccache --show-stats

- name: Install rustfmt & clippy
run: |
rustup component add rustfmt
rustup component add clippy

- name: Run rustfmt
run: cargo fmt --all -- --check

Expand Down Expand Up @@ -219,6 +224,11 @@ jobs:
- name: Print sccache stats (before run)
run: sccache --show-stats

- name: Install rustfmt & clippy
run: |
rustup component add rustfmt
rustup component add clippy

- name: Install cargo-pgrx
run: cargo install --path cargo-pgrx/ --debug --force

Expand Down Expand Up @@ -374,6 +384,11 @@ jobs:
- name: Print sccache stats (before)
run: sccache --show-stats

- name: Install rustfmt & clippy
run: |
rustup component add rustfmt
rustup component add clippy

- name: Install cargo-pgrx
run: cargo install --path cargo-pgrx/ --debug --force

Expand Down Expand Up @@ -495,6 +510,11 @@ jobs:
- name: Print sccache stats
run: sccache --show-stats

- name: Install rustfmt & clippy
run: |
rustup component add rustfmt
rustup component add clippy

- name: Install cargo-pgrx
run: cargo install --path cargo-pgrx/ --debug --force

Expand Down Expand Up @@ -575,6 +595,11 @@ jobs:
- name: Install cargo-pgrx
run: cargo install --path cargo-pgrx/ --debug --force

- name: Install rustfmt & clippy
run: |
rustup component add rustfmt
rustup component add clippy

- name: Print sccache stats
run: sccache --show-stats

Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[toolchain]
channel = "1.89.0"
Loading