backie/.github/workflows/rust.yml

96 lines
2.2 KiB
YAML
Raw Normal View History

name: Test and Build Rust
on:
push:
pull_request:
schedule:
# Check if it works with current dependencies (weekly on Wednesday 2:32 UTC)
- cron: '32 2 * * 3'
jobs:
test:
name: Test
runs-on: ubuntu-latest
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres
# Provide the password for postgres
env:
2023-03-09 15:59:45 +00:00
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
# Set health checks to wait until postgres has started
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
components: clippy
override: true
profile: minimal
2022-06-04 19:35:10 +00:00
toolchain: stable
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --verbose --all-targets --all-features -- -D warnings
- name: Install diesel-cli
uses: actions-rs/cargo@v1
with:
command: install
args: diesel_cli --no-default-features --features "postgres"
- name: Setup db
run: diesel setup
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
2023-03-11 17:29:33 +00:00
args: --verbose
2023-03-11 17:29:33 +00:00
- name: Run Postgres dependent tests
2021-07-11 10:18:53 +00:00
uses: actions-rs/cargo@v1
2023-03-11 17:29:33 +00:00
env:
DATABASE_URL: postgres://postgres:password@localhost:5432
2021-07-11 10:18:53 +00:00
with:
command: test
2023-03-11 17:29:33 +00:00
args: --verbose --all-features -- --ignored --test-threads 1
release:
name: Release x86_64-unknown-linux-gnu
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v3
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
override: true
profile: minimal
target: x86_64-unknown-linux-gnu
toolchain: stable
- name: Build release
uses: actions-rs/cargo@v1
with:
command: build
args: --release --verbose --all-features --target x86_64-unknown-linux-gnu