Enable merge queue #3843
Workflow file for this run
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
--- | |
name: Limitador | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['*'] | |
merge_group: | |
types: [checks_requested] | |
workflow_dispatch: | |
schedule: | |
- cron: '5 4 * * *' | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: Swatinem/rust-cache@v2 | |
- uses: abelfodil/protoc-action@v1 | |
with: | |
protoc-version: '3.19.4' | |
- run: cargo check --all-features | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: supercharge/[email protected] | |
with: | |
redis-version: 7 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: Swatinem/rust-cache@v2 | |
- uses: abelfodil/protoc-action@v1 | |
with: | |
protoc-version: '3.19.4' | |
- run: cargo test --all-features -vv | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: rustfmt | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo fmt --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: clippy | |
- uses: Swatinem/rust-cache@v2 | |
- uses: abelfodil/protoc-action@v1 | |
with: | |
protoc-version: '3.19.4' | |
- run: cargo clippy --all-features --all-targets -- -D warnings | |
kind: | |
name: Try in kind (Kubernetes in Docker) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: engineerd/[email protected] | |
with: | |
version: v0.11.1 | |
skipClusterCreation: true | |
- run: | | |
./limitador-server/script/kind-setup.sh | |
ips=$(kubectl get nodes -lkubernetes.io/hostname!=kind-control-plane -ojsonpath='{.items[*].status.addresses[?(@.type=="InternalIP")].address}') | |
port=$(kubectl -n default get service kuard -ojsonpath='{.spec.ports[?(@.name=="envoy-http")].nodePort}') | |
curl "http://${ips[0]}:${port}" | |
required-checks: | |
name: Limitador Required Checks | |
# This check adds a list of checks to one job to simplify adding settings to the repo. | |
# If a new check is added in this file, and it should be retested on entry to the merge queue, | |
# it needs to be added to the list below aka needs: [ existing check 1, existing check 2, new check ]. | |
needs: [ check, test, fmt, clippy ] | |
if: always() | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo '${{ toJSON(needs) }}' | jq -e 'all(.[]; .result == "success" or .result == "skipped")' |