Skip to content

docs: add initial set of shoutouts (JetBrains and Ory Kratos) #160

docs: add initial set of shoutouts (JetBrains and Ory Kratos)

docs: add initial set of shoutouts (JetBrains and Ory Kratos) #160

Workflow file for this run

name: Secutils
on:
push:
branches: [ main ]
paths-ignore:
- 'tools/**'
- 'Dockerfile'
- 'Dockerfile.aarch64-unknown-linux-musl'
- 'LICENSE'
- '*.md'
- '.husky/**'
- '*.json'
env:
CARGO_TERM_COLOR: always
DATABASE_URL: postgres:https://postgres@localhost:5432/secutils
jobs:
ci:
name: Build (Linux)
runs-on: ubuntu-latest
strategy:
matrix:
rust: [ stable ]
services:
postgres:
image: postgres:latest
env:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
name: Checkout
- name: Install Protoc
uses: arduino/setup-protoc@v3
# Always install nightly toolchain for `Rustfmt`.
- name: Install toolchain ${{ matrix.rust }}
run: |
rustup toolchain install ${{ matrix.rust }} nightly
rustup override set ${{ matrix.rust }}
rustup component add clippy
rustup component add --toolchain nightly rustfmt
- name: Cache Dependencies
uses: Swatinem/rust-cache@v2
- name: Check format
run: cargo +nightly fmt --all -- --check
- name: Check database schema
run: |
cargo install --force sqlx-cli
cargo sqlx database create
cargo sqlx migrate run
cargo sqlx prepare --check
- name: Test (default features)
run: cargo test
- name: Build (default features)
run: cargo build --release
- name: Clippy
run: cargo clippy --all-targets -- -D warnings