Skip to content
Snippets Groups Projects
Unverified Commit a19e2ca1 authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

[CI] Migrate `cloverage` linter to GitHub Actions (#27233)

parent 2b840f31
No related branches found
No related tags found
No related merge requests found
......@@ -485,19 +485,6 @@ workflows:
requires:
- checkout
- clojure:
name: be-linter-cloverage
requires:
- be-deps
# TODO FIXME
clojure-args: -X:dev:ee:ee-dev:test:cloverage
after-steps:
- run:
name: Upload code coverage to codecov.io
command: bash <(curl -s https://codecov.io/bash) -F back-end
skip-when-no-change: true
- test-driver:
name: be-tests-oracle-ee
requires:
......
......@@ -21,6 +21,25 @@ on:
jobs:
be-linter-cloverage:
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- name: Build static viz frontend
run: yarn build-static-viz
- name: Prepare back-end environment
uses: ./.github/actions/prepare-backend
with:
m2-cache-key: 'cloverage'
- name: Collect the test coverage
run: clojure -X:dev:ee:ee-dev:test:cloverage
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v2
with:
files: ./target/coverage/codecov.json
flags: back-end
be-linter-clj-kondo:
runs-on: ubuntu-20.04
timeout-minutes: 10
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment