-
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04ba9a2
commit 092f8c8
Showing
2 changed files
with
65 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: ci | ||
on: push | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Setup | ||
run: | | ||
sudo pip install pytest | ||
vim --version | ||
#- name: Setup tmate session | ||
# uses: mxschmitt/action-tmate@v3 | ||
|
||
- name: Run tests | ||
run: 'make test' | ||
|
||
code-quality: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Run tests | ||
run: | | ||
vim --version | ||
make check | ||
coverage: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo add-apt-repository ppa:neovim-ppa/stable -y | ||
sudo apt-get update -q | ||
sudo apt-get install neovim -y | ||
sudo pip install pynvim pytest-cov | ||
sudo pip list | ||
nvim --version | ||
- name: Run tests | ||
run: | | ||
make --keep-going test_coverage BUILD_VIRTUAL_ENV=$VIRTUAL_ENV | ||
- name: Upload coverage data | ||
run: | | ||
coverage xml | ||
travis_retry bash <(curl -s https://codecov.io/bash) -X fix -f coverage.xml -F py${TRAVIS_PYTHON_VERSION//./} |
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