Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
linrongbin16 committed Nov 22, 2024
1 parent 8568c51 commit 10d8782
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- lint
strategy:
matrix:
nvim_version: [stable, nightly, v0.9.0]
nvim_version: [stable, nightly]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -71,26 +71,28 @@ jobs:
version: ${{ matrix.nvim_version }}
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "luajit-2.1.0-beta3"
# luaVersion: "luajit-2.1.0-beta3"
luaVersion: "luajit-openresty"
- uses: leafo/gh-actions-luarocks@v4
- name: Run Tests
shell: bash
run: |
luarocks install luacov
luarocks install vusted
luarocks install luacov-reporter-lcov
luarocks --lua-version=5.1 install vusted
vusted --coverage ./spec
echo "ls -l ."
ls -l .
- name: Generate Coverage Report
shell: bash
run: |
echo "ls ."
ls -l .
echo "run luacov"
luacov
echo "ls ."
echo "luacov -r lcov"
luacov -r lcov
echo "ls -l ."
ls -l .
echo "cat ./luacov.report.out"
cat ./luacov.report.out
- uses: codecov/codecov-action@v3
echo "tail ./luacov.report.out"
tail -n 10 ./luacov.report.out
- uses: codecov/codecov-action@v4
with:
files: luacov.report.out
env:
Expand Down

0 comments on commit 10d8782

Please sign in to comment.