fix: fix test.yaml order
This commit is contained in:
parent
3bc21a4923
commit
8f6e871a55
39
.github/workflows/test.yaml
vendored
39
.github/workflows/test.yaml
vendored
@ -1,34 +1,15 @@
|
|||||||
name: Test
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
paths:
|
|
||||||
- "lua/**"
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- "lua/**"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run_tests:
|
run_tests:
|
||||||
name: unit tests
|
name: unit tests
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu22.04]
|
|
||||||
rev:
|
|
||||||
[
|
|
||||||
nightly/nvim-linux64.tar.gz,
|
|
||||||
v0.8.2/nvim-linux64.tar.gz,
|
|
||||||
v0.7.2/nvim-linux64.tar.gz,
|
|
||||||
]
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- run: date +%F > todays-date
|
- run: date +%F > todays-date
|
||||||
- name: Restore cache for today's nightly.
|
- name: Restore cache for today's nightly.
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: _neovim
|
|
||||||
key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }}
|
key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }}
|
||||||
|
path: _neovim
|
||||||
- name: Prepare
|
- name: Prepare
|
||||||
run: |
|
run: |
|
||||||
test -d _neovim || {
|
test -d _neovim || {
|
||||||
@ -41,3 +22,21 @@ jobs:
|
|||||||
export VIM="${PWD}/_neovim/share/nvim/runtime"
|
export VIM="${PWD}/_neovim/share/nvim/runtime"
|
||||||
nvim --version
|
nvim --version
|
||||||
make test
|
make test
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu22.04]
|
||||||
|
rev:
|
||||||
|
[
|
||||||
|
nightly/nvim-linux64.tar.gz,
|
||||||
|
v0.8.2/nvim-linux64.tar.gz,
|
||||||
|
v0.7.2/nvim-linux64.tar.gz,
|
||||||
|
]
|
||||||
|
name: Test
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "lua/**"
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- "lua/**"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user