-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from hasura:foreach
Implement foreach, add various tests
- Loading branch information
Showing
78 changed files
with
111,213 additions
and
587 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Security audit | ||
on: | ||
pull_request: | ||
jobs: | ||
audit: | ||
name: Security Audit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
# this defaults to "-D warnings", making warnings fail the entire build. | ||
# setting to empty strng to allow builds with warnings | ||
# todo: consider removing this, and disallowing pushing with warnings? | ||
rustflags: "" | ||
# we don't use the audit-check action, because it overwrites our lockfile before checking | ||
# ref: https://github.com/rustsec/audit-check/issues/15 | ||
# todo: once that is fixed, move to audit-check, and set up regular audit check on top of these PR ones | ||
- run: cargo install cargo-audit --locked | ||
- run: cargo audit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.