Skip to content

Commit

Permalink
fix CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed May 19, 2024
1 parent 9181065 commit b04906a
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Checkout themis.vim
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: thinca/vim-themis
path: vim-themis
Expand All @@ -21,7 +21,10 @@ jobs:
cd ./test
echo $THEMIS_VIM
../vim-themis/bin/themis *.vimspec
- uses: actions/setup-python@v1
- uses: actions/setup-python@v5
with:
python-version: '3'
cache: pip
- name: Install covimerage
run: |
pip install covimerage
Expand All @@ -34,7 +37,7 @@ jobs:
coverage report
coverage xml
- name: Upload coverage to codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./test/coverage.xml
Expand All @@ -43,7 +46,10 @@ jobs:
name: Run vint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3'
cache: pip
- run: pip install vim-vint
- run: vint --warning --verbose --enable-neovim ./autoload ./plugin

0 comments on commit b04906a

Please sign in to comment.