Skip to content

Bump tower-sessions from 0.10.2 to 0.12.1 in /axum1 #617

Bump tower-sessions from 0.10.2 to 0.12.1 in /axum1

Bump tower-sessions from 0.10.2 to 0.12.1 in /axum1 #617

Workflow file for this run

name: Rust
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
env:
CARGO_TERM_COLOR: always
APP_ENVIRONMENT: 'ci'
jobs:
test:
name: Test
runs-on: ubuntu-latest
services:
postgres:
image: postgres:12
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: hummus
ports:
- 5432:5432
redis:
image: redis:6
ports:
- 6379:6379
env:
SQLX_VERSION: 0.7.1
SQLX_FEATURES: postgres
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Cache sqlx-cli
uses: actions/cache@v2
id: cache-sqlx
with:
path: |
~/.cargo/bin/sqlx
~/.cargo/bin/cargo-sqlx
key: ${{ runner.os }}-sqlx-${{ env.SQLX_VERSION }}-${{ env.SQLX_FEATURES }}
- name: Install sqlx-cli
uses: actions-rs/cargo@v1
if: steps.cache-sqlx.outputs.cache-hit == false
with:
command: install
args: >
sqlx-cli
--force
--version=${{ env.SQLX_VERSION }}
--features=${{ env.SQLX_FEATURES }}
--locked
- name: Migrate database
run: |
sudo apt-get install libpq-dev -y
cd axum1/
SKIP_DOCKER=true ./scripts/init_db.sh
- name: Check sqlx-data.json is up-to-date
run: |
cd axum1/
cargo sqlx prepare --check -- --bin axum1
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path axum1/Cargo.toml
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all --manifest-path axum1/Cargo.toml -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
permissions: write-all
services:
postgres:
image: postgres:12
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: hummus
ports:
- 5432:5432
env:
SQLX_VERSION: 0.7.1
SQLX_FEATURES: postgres
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- name: Cache sqlx-cli
uses: actions/cache@v2
id: cache-sqlx
with:
path: |
~/.cargo/bin/sqlx
key: ${{ runner.os }}-sqlx-${{ env.SQLX_VERSION }}-${{ env.SQLX_FEATURES }}
- name: Install sqlx-cli
uses: actions-rs/cargo@v1
if: steps.cache-sqlx.outputs.cache-hit == false
with:
command: install
args: >
sqlx-cli
--force
--version=${{ env.SQLX_VERSION }}
--features=${{ env.SQLX_FEATURES }}
--locked
- name: Migrate database
run: |
sudo apt-get install libpq-dev -y
cd axum1/
SKIP_DOCKER=true ./scripts/init_db.sh
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --manifest-path axum1/Cargo.toml -- -D warnings