Skip to content

Merge pull request #11 from noborus/cellname-y #43

Merge pull request #11 from noborus/cellname-y

Merge pull request #11 from noborus/cellname-y #43

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 'stable' ]
name: Go ${{ matrix.go-version }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Build
run: make
- name: test
run: make test