Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Merge pull request #52 from Trioxidation/dependabot/cargo/openssl-0.1… #95

Merge pull request #52 from Trioxidation/dependabot/cargo/openssl-0.1…

Merge pull request #52 from Trioxidation/dependabot/cargo/openssl-0.1… #95

Workflow file for this run

name: Build
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- master
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
version:
#- 1.51.0
- stable
- nightly
name: ${{ matrix.version }} - x86_64-unknown-linux-gnu
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v2
- name: ⚡ Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install ${{ matrix.version }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.version }}-x86_64-unknown-linux-gnu
profile: minimal
override: true
- name: Run migrations
uses: actions-rs/cargo@v1
with:
command: run
args: --bin tests-migrate
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/postgres
TRIOX_SERVER_SECRET: "aslkfda;lksdfaksdjf;alsdjfqo3piwrq3n4r2kl3r"
- name: check build
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples --tests
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/postgres
TRIOX_SERVER_SECRET: "aslkfda;lksdfaksdjf;alsdjfqo3piwrq3n4r2kl3r"
- name: tests
uses: actions-rs/cargo@v1
timeout-minutes: 40
with:
command: test
args: --all --all-features --no-fail-fast
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/postgres
TRIOX_SERVER_SECRET: "aslkfda;lksdfaksdjf;alsdjfqo3piwrq3n4r2kl3r"