-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fc5648
commit ef298b9
Showing
5 changed files
with
21 additions
and
17 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
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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
on: push | ||
name: Clippy Check | ||
name: Clippy and Format | ||
on: | ||
push: | ||
|
||
jobs: | ||
clippy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
components: clippy | ||
components: clippy, rustfmt | ||
- uses: auguwu/[email protected] | ||
with: | ||
token: ${{secrets.GITHUB_TOKEN}} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Security audit | ||
name: Security Audit | ||
on: | ||
push: | ||
paths: | ||
|
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 |
---|---|---|
@@ -1,15 +1,12 @@ | ||
name: Test builds docker | ||
|
||
name: Test Docker Build | ||
on: | ||
pull_request: | ||
push: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build docker image | ||
- name: Build | ||
run: | | ||
docker build . |
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 |
---|---|---|
@@ -1,13 +1,20 @@ | ||
name: Test Builds Binaries | ||
name: Test Binary Build | ||
on: | ||
pull_request: | ||
push: | ||
|
||
jobs: | ||
build: | ||
name: Test it builds binaries | ||
name: Build | ||
runs-on: macos-latest | ||
steps: | ||
- name: Set up Homebrew | ||
- id: set-up-homebrew | ||
- uses: Homebrew/actions/setup-homebrew@master | ||
|
||
- name: Install dependencies | ||
run: brew install messense/macos-cross-toolchains/x86_64-unknown-linux-gnu mingw-w64 | ||
|
||
- uses: actions/checkout@v4 | ||
- name: Build | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
- run: cargo build --release |