-
Notifications
You must be signed in to change notification settings - Fork 0
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 #1 from semiotic-ai/joseph/set-up-ci
ci: set up CI
- Loading branch information
Showing
7 changed files
with
222 additions
and
10 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,33 @@ | ||
name: Security audit | ||
on: | ||
push: | ||
paths: | ||
- '**/Cargo.toml' | ||
- '**/Cargo.lock' | ||
|
||
permissions: | ||
issues: write | ||
checks: write | ||
contents: read | ||
|
||
jobs: | ||
security_audit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Cache dependencies | ||
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 #v2.7.3 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Configure sccache | ||
run: | | ||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | ||
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af #v0.0.5 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
- uses: rustsec/[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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: "Lint PR" | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
conventional-commits-check: | ||
name: Check conventional commits | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5 | ||
with: | ||
python-version: "3.10" | ||
- name: Install commitizen | ||
run: pip install commitizen | ||
- name: commitizen check | ||
run: cz check --rev-range ${{ github.event.pull_request.base.sha }}..HEAD |
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,32 @@ | ||
name: License headers check | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
check: | ||
name: License headers check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
- name: Install addlicense | ||
run: | | ||
wget https://github.com/google/addlicense/releases/download/v1.1.1/addlicense_1.1.1_Linux_x86_64.tar.gz | ||
tar -xzf addlicense_1.1.1_Linux_x86_64.tar.gz | ||
sudo mv addlicense /usr/local/bin | ||
- name: Check license headers | ||
run: > | ||
addlicense \ | ||
-check \ | ||
-c "Semiotic AI, Inc." \ | ||
-l "apache" \ | ||
-s=only \ | ||
-ignore '.github/workflows/*.yml' \ | ||
-ignore '.github/*.yml' \ | ||
-ignore '.github/workflows/*.yaml' \ | ||
-ignore '.github/*.yaml' \ | ||
-ignore 'protos/firehose.proto' \ | ||
. |
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,122 @@ | ||
name: tests | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
fmt: | ||
name: cargo fmt | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.82-bookworm | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- run: | | ||
rustup component add rustfmt | ||
cargo fmt --all -- --check | ||
clippy: | ||
name: cargo clippy | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.82-bookworm | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- name: Cache dependencies | ||
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 #v2.7.3 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Configure sccache | ||
run: | | ||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | ||
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af #v0.0.5 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
- run: | | ||
rustup component add clippy | ||
# Temporarily allowing dead-code, while denying all other warnings | ||
cargo clippy --all-features --all-targets -- -A dead-code -D warnings | ||
test: | ||
name: cargo test | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
actions: read | ||
container: | ||
image: rust:1.82-bookworm | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- name: Cache dependencies | ||
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 #v2.7.3 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Configure sccache | ||
run: | | ||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | ||
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af #v0.0.5 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
- name: Run tests | ||
run: cargo test --all-features --workspace | ||
|
||
# Cannot do with llvm-cov, see https://github.com/taiki-e/cargo-llvm-cov/issues/2 | ||
test-docs: | ||
name: cargo test docs code snippets | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
actions: read | ||
container: | ||
image: rust:1.82-bookworm | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- name: Cache dependencies | ||
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 #v2.7.3 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Configure sccache | ||
run: | | ||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | ||
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af #v0.0.5 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
- name: Test documentation code snippets | ||
run: cargo test --doc --all-features --workspace | ||
|
||
build: | ||
name: cargo check | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.82-bookworm | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- name: Cache dependencies | ||
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 #v2.7.3 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Configure sccache | ||
run: | | ||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | ||
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af #v0.0.5 | ||
if: ${{ !startsWith(github.head_ref, 'renovate/') }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
- name: Cargo check | ||
run: cargo check |
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,3 +1,6 @@ | ||
// Copyright 2024-, Semiotic AI, Inc. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
pub mod request; | ||
|
||
tonic::include_proto!("sf.firehose.v2"); |
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