forked from jcornaz/benimator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
44 lines (39 loc) · 1 KB
/
.gitpod.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
image:
file: .gitpod.Dockerfile
tasks:
- name: serve docs
init: gp sync-await docs
command: miniserve target/doc
- name: test
before: rustup update beta
init: |
cp .cargo/fast_compiles_config .cargo/config.toml
cargo update
cargo +nightly doc --all-features --no-deps
gp sync-done docs
cargo clippy --all-features --all-targets
cargo test --all-features
cargo test
command: |
cargo watch -x 'test --tests' -x 'test --all-features' -x 'clippy --all-features --all-targets' -x '+nightly doc --all-features --no-deps'
vscode:
extensions:
- belfz.search-crates-io
- matklad.rust-analyzer
- serayuzgur.crates
- bungcip.better-toml
- valmack.circleci-config-validator
ports:
- name: documentation
port: 8080
visibility: private
onOpen: notify
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
addComment: false
addBadge: false