-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: correct codecov installation
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,24 +17,24 @@ jobs: | |
# PYTHON: '3.10' | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: install dependencies | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y autopoint meson ninja-build gettext libunwind-dev libefl-all-dev libeet1 libeet-bin | ||
sudo apt-get install -y check | ||
- name: Setup Python | ||
- name: Setup python | ||
uses: actions/setup-python@master | ||
# with: | ||
# python-version: 3.10 | ||
- name: project setup (meson) | ||
- name: Install coverage | ||
run: pip install coverage | ||
- name: Setup project (meson) | ||
run: meson setup . build | ||
- name: project build (ninja) | ||
- name: Buil project (ninja) | ||
run: ninja -C build | ||
- name: generate coverage report | ||
run: | | ||
pip install coverage| | ||
ninja -C build coverage | ||
- name: upload to codecov | ||
- name: Generate coverage report | ||
run: ninja -C build coverage | ||
- name: Upload to Codecov | ||
uses: codecov/[email protected] | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |