Skip to content

chore: use catalyst types instead of duplicated internal types #34

chore: use catalyst types instead of duplicated internal types

chore: use catalyst types instead of duplicated internal types #34

Workflow file for this run

name: "Run tests"
on:
push:
branches:
- main
- 'release/**'
pull_request:
branches:
- '**'
types:
- opened
- edited
- synchronize
workflow_dispatch:
jobs:
unit-test:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Install Latest Docker
run: |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
- name: Run unit tests
run: |
make tidy
make unit-test