Skip to content

(ci): add unit-tests job #6

(ci): add unit-tests job

(ci): add unit-tests job #6

Workflow file for this run

name: E2E
on:
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: Run the build with upterm debugging enabled
(https://github.com/lhotari/action-upterm/)
required: false
default: false
pull_request:
branches:
- main
concurrency:
group: e2e-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Run unit-tests
run: make test
e2e-test-empty:
runs-on: ubuntu-latest
steps:
- name: Echo hello
run: |
echo "hello"
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Build
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Build with Makefile
run: make build