Skip to content

Commit

Permalink
Revert me: Skip most CI stages
Browse files Browse the repository at this point in the history
  • Loading branch information
cmichi committed Mar 15, 2022
1 parent 6bfb9aa commit da13410
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,21 +68,21 @@ workflow:
#### stage: check
# be aware that the used image has cargo-contract installed

fmt:
.fmt:
stage: check
<<: *docker-env
script:
- cargo fmt --verbose --all -- --check

clippy:
.clippy:
stage: check
<<: *docker-env
script:
- cargo clippy --verbose --all-targets --all-features -- -D warnings;

#### stage: test (all features)

test-dylint:
.test-dylint:
stage: test
<<: *docker-env
script:
Expand All @@ -106,13 +106,13 @@ test-dylint:

- cargo test --verbose --all-features

test:
.test:
stage: test
<<: *docker-env
script:
- cargo test --verbose --workspace --all-features

test-new-project-template:
.test-new-project-template:
stage: test
<<: *docker-env
script:
Expand Down Expand Up @@ -152,7 +152,7 @@ test-publish-install:

#### stage: build (default features)

build:
.build:
stage: build
<<: *docker-env
<<: *collect-artifacts
Expand Down

0 comments on commit da13410

Please sign in to comment.