olexsmir.xyz/.github/workflows/ci.yml(view raw)
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 |
name: ci
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go/go.mod
cache-dependency-path: go/go.mod
- name: Install nvim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: nightly
- name: build markdown parser
run: make build-parser
- name: tests
run: |
nvim --version
make test
- name: build
run: make build
- name: publish
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages
FOLDER: build
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: "{msg}"
|