Skip to content

build(deps): update hashicorp/aws requirement from ~> 5.70 to ~> 6.47 in /deploy/terraform/aws #35

build(deps): update hashicorp/aws requirement from ~> 5.70 to ~> 6.47 in /deploy/terraform/aws

build(deps): update hashicorp/aws requirement from ~> 5.70 to ~> 6.47 in /deploy/terraform/aws #35

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
go:
runs-on: ubuntu-latest
strategy:
matrix:
service: [auth-issuer, backend-echo]
defaults:
run:
working-directory: services/${{ matrix.service }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
cache-dependency-path: services/${{ matrix.service }}/go.sum
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...
rust:
runs-on: ubuntu-latest
defaults:
run:
working-directory: services/gateway
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
with:
workspaces: services/gateway
- name: Format
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Test
run: cargo test
rego:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install OPA
run: |
curl -L -o /usr/local/bin/opa \
https://openpolicyagent.org/downloads/v0.68.0/opa_linux_amd64_static
chmod +x /usr/local/bin/opa
opa version
- name: Format
run: opa fmt --diff policies/
- name: Test
run: opa test policies/