Skip to content

Merge pull request #37 from raktar-project/fix-cognito-oauth-urls #72

Merge pull request #37 from raktar-project/fix-cognito-oauth-urls

Merge pull request #37 from raktar-project/fix-cognito-oauth-urls #72

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: clippy
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: rustfmt
run: cargo fmt --all --check
test:
runs-on: ubuntu-latest
services:
dynamodb:
image: amazon/dynamodb-local:latest"
ports:
- "8000:8000"
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: test
run: cargo test -- --nocapture