Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

updated workflows

updated workflows #4

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on:
push:
branches:
- '**'
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.6
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: make test
container-build:
name: Invoke Container Build Workflow
uses: ./.github/workflows/container-build.yml
with:
tag: ${{ github.sha }}