瀏覽代碼

Skip build, test, analysis/lint when we don't make code changes

cycles-validator
Mark Felder 3 年之前
父節點
當前提交
e06466a532
共有 1 個檔案被更改,包括 25 行新增0 行删除
  1. +25
    -0
      .gitlab-ci.yml

+ 25
- 0
.gitlab-ci.yml 查看文件

@@ -37,6 +37,11 @@ after_script:

build:
stage: build
only:
changes:
- "**/*.ex"
- "**/*.exs"
- "mix.lock"
script:
- mix compile --force

@@ -64,6 +69,11 @@ benchmark:

unit-testing:
stage: test
only:
changes:
- "**/*.ex"
- "**/*.exs"
- "mix.lock"
retry: 2
cache: &testing_cache_policy
<<: *global_cache_policy
@@ -97,6 +107,11 @@ unit-testing:

unit-testing-rum:
stage: test
only:
changes:
- "**/*.ex"
- "**/*.exs"
- "mix.lock"
retry: 2
cache: *testing_cache_policy
services:
@@ -115,12 +130,22 @@ unit-testing-rum:

lint:
stage: test
only:
changes:
- "**/*.ex"
- "**/*.exs"
- "mix.lock"
cache: *testing_cache_policy
script:
- mix format --check-formatted

analysis:
stage: test
only:
changes:
- "**/*.ex"
- "**/*.exs"
- "mix.lock"
cache: *testing_cache_policy
script:
- mix credo --strict --only=warnings,todo,fixme,consistency,readability


Loading…
取消
儲存