b85e404Fix lint1433900Bump to go 1.25517a3c7Add missed template to README311c10abuild(deps): bump github.com/urfave/cli/v3 from 3.6.1 to 3.6.2c1c9a13parse "linenumbers" in code block5bb400cadd view-file template5270864build(deps): bump golang.org/x/text from 0.32.0 to 0.33.030f3200build(deps): bump github.com/bmatcuk/doublestar/v4 from 4.9.1 to 4.9.216f72b0feat: extend link resolution to support blog postsa334c1cfeat: enhance Confluence link generation by utilizing base URL from API responsebb4d4e2build(deps): bump github.com/yuin/goldmark from 1.7.13 to 1.7.162784c92fix: update test cases for large page IDs to reflect Confluence Cloud examples6d5a9fbfeat: implement GenerateTinyLink function and associated tests for Confluence tiny link generationef560d0fix: resolve link space inheritance and enhance Confluence URL normalization tests0dd5ea9Clean up comments in normalizeConfluenceWebUIPathb2efff8Update example path in link.go comments0a821fbUpdate link_test.gob4370c0feat: add normalizeConfluenceWebUIPath function and tests for URL rewriting4c2a3c9Bump DavidAnson/markdownlint-cli2-action from 21 to 22967efdeREADME.md: Update help output git-subtree-dir: mark git-subtree-split:b85e40402c
114 lines
2.5 KiB
YAML
114 lines
2.5 KiB
YAML
name: continuous-integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
env:
|
|
GO_VERSION: "1.25.6"
|
|
|
|
jobs:
|
|
# Runs Golangci-lint on the source code
|
|
ci-go-lint:
|
|
name: ci-go-lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
id: go
|
|
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v9
|
|
|
|
# Runs markdown-lint on the markdown files
|
|
ci-markdown-lint:
|
|
name: ci-markdown-lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v6
|
|
- name: markdownlint-cli2-action
|
|
uses: DavidAnson/markdownlint-cli2-action@v22
|
|
|
|
# Executes Unit Tests
|
|
ci-unit-tests:
|
|
name: ci-unit-tests
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
id: go
|
|
|
|
- name: Run unit tests
|
|
run: |
|
|
make test
|
|
|
|
# Builds mark binary
|
|
ci-build:
|
|
name: ci-build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
id: go
|
|
|
|
- name: Build mark
|
|
run: |
|
|
make build
|
|
|
|
# Build and push Dockerimage
|
|
ci-docker-build:
|
|
name: ci-docker-build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Build only (on commits)
|
|
uses: docker/build-push-action@v6
|
|
if: ${{ github.ref_type != 'tag' }}
|
|
with:
|
|
push: false
|
|
tags: kovetskiy/mark:latest
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
if: ${{ github.ref_type == 'tag' }}
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
|
|
- name: Build and push (on tag)
|
|
uses: docker/build-push-action@v6
|
|
if: ${{ github.ref_type == 'tag' }}
|
|
with:
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: |
|
|
kovetskiy/mark:${{ github.ref_name }}
|
|
kovetskiy/mark:latest
|