generated from linrongbin16/ci-template.nvim
-
-
Notifications
You must be signed in to change notification settings - Fork 0
140 lines (140 loc) · 4.25 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
commits:
name: Commits
if: ${{ github.ref != 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
args: --config-path .stylua.toml ./lua ./spec
- name: Add color.hsl.lua
if: ${{ github.ref != 'refs/heads/main' }}
run: |
echo "pwd"
echo $PWD
curl -k -L http://sputnik.freewisdom.org/files/colors-8.05.26.tar.gz -o ~/.colors.tar.gz
tar zxf ~/.colors.tar.gz
echo 'ls -lh'
ls -lh
rm -rf ./lua/commons/color/hsl.lua
cp -rf ./colors-8.05.26/lua/colors.lua ./lua/commons/color/hsl.lua
rm -rf ./colors-8.05.26
sed -i '1 i\---@diagnostic disable' ./lua/commons/color/hsl.lua
- uses: cargo-bins/cargo-binstall@main
- name: Selene
run: |
cargo binstall --no-confirm selene
selene --config selene.toml ./lua
- uses: stevearc/nvim-typecheck-action@v2
with:
path: lua
configpath: ".luarc.json"
- uses: stefanzweifel/git-auto-commit-action@v5
if: ${{ github.ref != 'refs/heads/main' }}
with:
commit_message: "chore(pr): auto-commit"
push_options: "--force"
unit_test:
name: Unxi Test
needs:
- lint
strategy:
matrix:
include:
- nvim_version: stable
os: ubuntu-latest
- nvim_version: nightly
os: ubuntu-latest
- nvim_version: stable
os: macos-latest
- nvim_version: nightly
os: macos-latest
- nvim_version: stable
os: windows-latest
- nvim_version: nightly
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
id: vim
with:
neovim: true
version: ${{ matrix.nvim_version }}
- uses: ilammy/msvc-dev-cmd@v1
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "luajit-openresty"
if: ${{ !startsWith(matrix.os, 'windows') }}
- uses: leafo/gh-actions-luarocks@v4
if: ${{ !startsWith(matrix.os, 'windows') }}
- uses: notomo/action-setup-nvim-lua@v1
if: ${{ startsWith(matrix.os, 'windows') }}
- name: Run Test Cases
run: |
luarocks --lua-version=5.1 install vusted
vusted ./spec
# - name: Run Test Cases
# run: |
# luarocks install luacov
# luarocks install luacov-reporter-lcov
# luarocks --lua-version=5.1 install vusted
# vusted --coverage ./spec
# echo "ls -l ."
# ls -l .
# - name: Check Coverage Reports
# if: ${{ !startsWith(matrix.os, 'windows') }}
# run: |
# echo "luacov -r lcov"
# luacov -r lcov
# echo "ls -la ."
# ls -la .
# echo "tail ./luacov.report.out"
# tail -n 50 ./luacov.report.out
# - uses: codecov/codecov-action@v4
# if: ${{ !startsWith(matrix.os, 'windows') }}
# with:
# files: luacov.report.out
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
release:
name: Release
if: ${{ github.ref == 'refs/heads/main' }}
needs:
- unit_test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: googleapis/release-please-action@v4
id: release
- uses: nvim-neorocks/luarocks-tag-release@v5
if: ${{ steps.release.outputs.release_created }}
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
with:
version: ${{ steps.release.outputs.tag_name }}
labels: |
neovim
vim