Skip to content

Merge pull request #2 from snapp-incubator/bug-fix-pool-name #20

Merge pull request #2 from snapp-incubator/bug-fix-pool-name

Merge pull request #2 from snapp-incubator/bug-fix-pool-name #20

Workflow file for this run

name: CI
on:
push:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@v6.0.2
- name: Setup Go
uses: actions/setup-go@v6.4.0
with:
go-version-file: go.mod
- name: Run linter
run: make lint
test:
name: Test
runs-on: ubuntu-latest
needs: lint
steps:
- name: Clone the code
uses: actions/checkout@v6.0.2
- name: Setup Go
uses: actions/setup-go@v6.4.0
with:
go-version-file: go.mod
- name: Running Tests
run: |
make test