2020-09-16 02:11:49 +02:00
|
|
|
name: CI (Linux)
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test:
|
|
|
|
name: ${{ matrix.version }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
version: ["stable", "nightly"]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: cache cargo artifacts
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
./target/debug
|
|
|
|
key: cargo-linux-${{ matrix.version }}-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
cargo-linux-${{ matrix.version }}-
|
|
|
|
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: ${{ matrix.version }}
|
|
|
|
override: true
|
|
|
|
|
2021-03-03 15:37:17 +01:00
|
|
|
- name: create test db for sqlx
|
|
|
|
run: |
|
|
|
|
sudo apt-get update && sudo apt-get install sqlite3
|
|
|
|
cd database_interactions/sqlx_todo
|
|
|
|
cp .env.example .env
|
|
|
|
cat schema.sql | sqlite3 test.db
|
|
|
|
chmod a+rwx test.db
|
|
|
|
|
2020-09-16 02:11:49 +02:00
|
|
|
- name: cargo check
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
timeout-minutes: 30
|
|
|
|
with:
|
|
|
|
command: check
|
|
|
|
args: --workspace --bins --examples --tests
|
|
|
|
|
|
|
|
- name: start redis
|
|
|
|
uses: supercharge/redis-github-action@1.1.0
|
|
|
|
with:
|
|
|
|
redis-version: 6
|
|
|
|
|
2021-03-01 19:35:02 +01:00
|
|
|
- name: run diesel migrations
|
|
|
|
run: |
|
|
|
|
cargo install diesel_cli
|
|
|
|
cd database_interactions/diesel
|
|
|
|
diesel migration run
|
|
|
|
chmod a+rwx test.db
|
|
|
|
|
2020-09-16 02:11:49 +02:00
|
|
|
- name: cargo test
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
timeout-minutes: 30
|
|
|
|
env:
|
|
|
|
# included in example of redis, not clear its purpose
|
|
|
|
CI: true
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --workspace --all-features --no-fail-fast -- --nocapture
|