Skip to content

Add icon element

Add icon element #19

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.21.0'
- name: Run lint
working-directory: ./server
run: make lint
- name: Run tests
working-directory: ./server
run: make test