|
1 | 1 | name: CI
|
| 2 | + |
2 | 3 | on:
|
3 | 4 | push:
|
| 5 | + branches: [main, master] |
4 | 6 | pull_request:
|
5 | 7 |
|
6 | 8 | jobs:
|
7 |
| - extras: |
8 |
| - runs-on: ubuntu-latest |
9 |
| - if: ${{ github.ref == 'refs/heads/main' }} |
10 |
| - steps: |
11 |
| - - name: Install Neovim |
12 |
| - shell: bash |
13 |
| - run: | |
14 |
| - mkdir -p /tmp/nvim |
15 |
| - wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage -O /tmp/nvim/nvim.appimage |
16 |
| - cd /tmp/nvim |
17 |
| - chmod a+x ./nvim.appimage |
18 |
| - ./nvim.appimage --appimage-extract |
19 |
| - echo "/tmp/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH |
20 |
| - - uses: actions/checkout@v3 |
21 |
| - - name: Build Extras |
22 |
| - run: | |
23 |
| - nvim -u NONE -E -R --headless --cmd "set rtp^=." --cmd "packloadall" --cmd "lua require('tokyonight.extra').setup()" --cmd qa |
24 |
| - - name: Push changes |
25 |
| - uses: stefanzweifel/git-auto-commit-action@v4 |
26 |
| - with: |
27 |
| - commit_message: "chore(build): auto-generate extras" |
28 |
| - commit_user_name: "github-actions[bot]" |
29 |
| - commit_user_email: "github-actions[bot]@users.noreply.github.com" |
30 |
| - commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>" |
31 |
| - tests: |
32 |
| - needs: extras |
33 |
| - if: always() |
34 |
| - strategy: |
35 |
| - matrix: |
36 |
| - # os: [ubuntu-latest, windows-latest] |
37 |
| - os: [ubuntu-latest] |
38 |
| - runs-on: ${{ matrix.os }} |
39 |
| - steps: |
40 |
| - - uses: actions/checkout@v3 |
41 |
| - - name: Install Neovim |
42 |
| - shell: bash |
43 |
| - run: | |
44 |
| - mkdir -p /tmp/nvim |
45 |
| - wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage -O /tmp/nvim/nvim.appimage |
46 |
| - cd /tmp/nvim |
47 |
| - chmod a+x ./nvim.appimage |
48 |
| - ./nvim.appimage --appimage-extract |
49 |
| - echo "/tmp/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH |
50 |
| - - name: Run Tests |
51 |
| - run: | |
52 |
| - nvim --version |
53 |
| - [ ! -d tests ] && exit 0 |
54 |
| - nvim --headless -u tests/init.lua -c "PlenaryBustedDirectory tests/ {minimal_init = 'tests/init.lua', sequential = true}" |
55 |
| - docs: |
56 |
| - runs-on: ubuntu-latest |
57 |
| - needs: tests |
58 |
| - if: ${{ github.ref == 'refs/heads/main' }} |
59 |
| - steps: |
60 |
| - - uses: actions/checkout@v3 |
61 |
| - - run: git pull |
62 |
| - - name: panvimdoc |
63 |
| - uses: kdheepak/panvimdoc@main |
64 |
| - with: |
65 |
| - vimdoc: tokyonight.nvim |
66 |
| - version: "Neovim >= 0.8.0" |
67 |
| - demojify: true |
68 |
| - treesitter: true |
69 |
| - - name: Push changes |
70 |
| - uses: stefanzweifel/git-auto-commit-action@v4 |
71 |
| - with: |
72 |
| - commit_message: "chore(build): auto-generate vimdoc" |
73 |
| - commit_user_name: "github-actions[bot]" |
74 |
| - commit_user_email: "github-actions[bot]@users.noreply.github.com" |
75 |
| - commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>" |
76 |
| - release: |
77 |
| - name: release |
78 |
| - if: ${{ github.ref == 'refs/heads/main' }} |
79 |
| - needs: |
80 |
| - - docs |
81 |
| - - tests |
82 |
| - runs-on: ubuntu-latest |
83 |
| - steps: |
84 |
| - - uses: google-github-actions/release-please-action@v3 |
85 |
| - id: release |
86 |
| - with: |
87 |
| - release-type: simple |
88 |
| - package-name: tokyonight.nvim |
89 |
| - - uses: actions/checkout@v3 |
90 |
| - - name: tag stable versions |
91 |
| - if: ${{ steps.release.outputs.release_created }} |
92 |
| - run: | |
93 |
| - git config user.name github-actions[bot] |
94 |
| - git config user.email github-actions[bot]@users.noreply.github.com |
95 |
| - git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git" |
96 |
| - git tag -d stable || true |
97 |
| - git push origin :stable || true |
98 |
| - git tag -a stable -m "Last Stable Release" |
99 |
| - git push origin stable |
| 9 | + ci: |
| 10 | + uses: folke/github/.github/workflows/ci.yml@main |
| 11 | + secrets: inherit |
| 12 | + with: |
| 13 | + plugin: tokyonight.nvim |
| 14 | + repo: folke/tokyonight.nvim |
0 commit comments