-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (44 loc) · 1.69 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# III-IV
# Copyright 2023 Julio Merino
name: Test
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
# Use the latest stable Rust version for lint checks to
# verify any new Clippy warnings that may appear.
toolchain: stable
default: true
components: clippy, rustfmt
- uses: actions/checkout@v2
- run: sudo apt update
- run: sudo apt install pre-commit
- run: make lint
test-individually:
runs-on: ubuntu-latest
env:
AZURE_MAPS_KEY: ${{ secrets.AZURE_MAPS_KEY }}
PGSQL_TEST_HOST: ${{ secrets.PGSQL_TEST_HOST }}
PGSQL_TEST_PORT: ${{ secrets.PGSQL_TEST_PORT }}
PGSQL_TEST_DATABASE: ${{ secrets.PGSQL_TEST_DATABASE }}
PGSQL_TEST_USERNAME: ${{ secrets.PGSQL_TEST_USERNAME }}
PGSQL_TEST_PASSWORD: ${{ secrets.PGSQL_TEST_PASSWORD }}
steps:
- uses: actions/checkout@v2
- run: make test-individually
test-workspace:
runs-on: ubuntu-latest
env:
AZURE_MAPS_KEY: ${{ secrets.AZURE_MAPS_KEY }}
PGSQL_TEST_HOST: ${{ secrets.PGSQL_TEST_HOST }}
PGSQL_TEST_PORT: ${{ secrets.PGSQL_TEST_PORT }}
PGSQL_TEST_DATABASE: ${{ secrets.PGSQL_TEST_DATABASE }}
PGSQL_TEST_USERNAME: ${{ secrets.PGSQL_TEST_USERNAME }}
PGSQL_TEST_PASSWORD: ${{ secrets.PGSQL_TEST_PASSWORD }}
steps:
- uses: actions/checkout@v2
- run: make test-workspace