mirror of https://github.com/VinGarcia/ksql.git
Try to fix CI again
parent
3a0e9b6da3
commit
7661ba0314
|
@ -1,6 +1,9 @@
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push: {}
|
||||||
|
pull_request:
|
||||||
|
types: [opened, reopened]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
|
@ -20,7 +23,10 @@ jobs:
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: ./scripts/run-all-tests.sh
|
run: ./scripts/run-all-tests.sh
|
||||||
- name: Run Coverage
|
- name: Run Coverage
|
||||||
run: bash <(curl -s https://uploader.codecov.io/latest/linux/codecov)
|
run: |
|
||||||
|
curl -Os https://uploader.codecov.io/latest/linux/codecov
|
||||||
|
chmod +x codecov
|
||||||
|
./codecov -t $CODECOV_TOKEN
|
||||||
env:
|
env:
|
||||||
CODECOV_TOKEN: 36be8ba6-7ef1-4ec2-b607-67c1055a62ad
|
CODECOV_TOKEN: 36be8ba6-7ef1-4ec2-b607-67c1055a62ad
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue