mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-08 12:40:25 -03:00
27 lines
745 B
YAML
27 lines
745 B
YAML
name: Coverage
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 1 * * *"
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Download source
|
|
uses: actions/checkout@v4
|
|
- name: Install Crystal
|
|
uses: crystal-lang/install-crystal@v1
|
|
- name: Run tests using kcov
|
|
run: |
|
|
sudo apt update && sudo apt install kcov
|
|
shards install
|
|
crystal build src/run_tests.cr
|
|
kcov --clean --include-path=./src coverage ./run_tests
|
|
curl -Os https://uploader.codecov.io/latest/linux/codecov
|
|
chmod +x codecov
|
|
./codecov -t ${CODECOV_TOKEN} -s coverage
|
|
env:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|