Skip to content

Commit 78a3620

Browse files
committed
fix(workflow): Updating supported versions
1 parent 87afc37 commit 78a3620

File tree

1 file changed

+8
-21
lines changed

1 file changed

+8
-21
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,30 @@
11
name: main
2-
32
on:
43
push:
54
branches: [main]
65
pull_request:
76
types: [opened, synchronize]
8-
97
concurrency:
108
group: github.head_ref
119
cancel-in-progress: true
12-
1310
jobs:
1411
lint:
1512
runs-on: ubuntu-latest
1613
name: lint
1714
steps:
1815
- uses: actions/checkout@v3
19-
2016
- uses: JohnnyMorganz/stylua-action@v2
2117
with:
2218
token: ${{ secrets.GITHUB_TOKEN }}
2319
version: latest
2420
args: --check .
21+
#documentation:
22+
# runs-on: ubuntu-latest
23+
# name: documentation
24+
# steps:
25+
# - uses: actions/checkout@v3
26+
#
2527

26-
#documentation:
27-
# runs-on: ubuntu-latest
28-
# name: documentation
29-
# steps:
30-
# - uses: actions/checkout@v3
31-
#
3228
# - name: setup neovim
3329
# uses: rhysd/action-setup-vim@v1
3430
# with:
@@ -40,37 +36,30 @@ jobs:
4036

4137
# - name: check docs diff
4238
# run: exit $(git diff --name-only origin/main -- doc | wc -l)
43-
4439
tests:
45-
needs:
40+
needs:
4641
- lint
4742
#- documentation
4843
runs-on: ubuntu-latest
4944
timeout-minutes: 2
5045
strategy:
5146
matrix:
52-
neovim_version: ['v0.9.1', 'v0.9.4', 'v0.10.0', 'nightly']
53-
47+
neovim_version: ['v0.10.0', 'v0.10.1', 'v0.10.2', 'v0.10.3', 'nightly']
5448
steps:
5549
- uses: actions/checkout@v3
56-
5750
- run: date +%F > todays-date
58-
5951
- name: restore cache for today's nightly.
6052
uses: actions/cache@v3
6153
with:
6254
path: _neovim
6355
key: ${{ runner.os }}-x64-${{ hashFiles('todays-date') }}
64-
6556
- name: setup neovim
6657
uses: rhysd/action-setup-vim@v1
6758
with:
6859
neovim: true
6960
version: ${{ matrix.neovim_version }}
70-
7161
- name: run tests
7262
run: make test-ci
73-
7463
release:
7564
name: release
7665
if: ${{ github.ref == 'refs/heads/main' }}
@@ -79,13 +68,11 @@ jobs:
7968
runs-on: ubuntu-latest
8069
steps:
8170
- uses: actions/checkout@v3
82-
8371
- uses: google-github-actions/release-please-action@v3
8472
id: release
8573
with:
8674
release-type: simple
8775
package-name: neotest-dotnet
88-
8976
- name: tag stable versions
9077
if: ${{ steps.release.outputs.release_created }}
9178
run: |

0 commit comments

Comments
 (0)