Skip to content

Markdown support (#39) #122

Markdown support (#39)

Markdown support (#39) #122

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install asdf & tools
uses: asdf-vm/actions/install@v3
- name: Build
run: make build
- name: Lint
run: make lint
- name: Unit Test
run: make test
- name: Integration Test
run: make test-integration