-
-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (31 loc) · 910 Bytes
/
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
name: Tests
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Cache build
uses: actions/cache@v4
with:
path: backend/target
key: cargo-test-${{ hashFiles('backend/Cargo.lock') }}
- name: Download test inputs
run: |
cd web/public
mkdir osm
cd osm
wget https://assets.od2net.org/severance_pbfs/bristol.pbf
wget https://assets.od2net.org/severance_pbfs/strasbourg.pbf
cd ..
mkdir boundaries
cd boundaries
wget https://assets.od2net.org/boundaries/bristol.geojson
wget https://assets.od2net.org/boundaries/strasbourg.geojson
- name: Run tests
run: |
cd backend
cargo test --release