Skip to content

feat: add (s *StarsExtractor) RejectMisalignedPixels() to stars module in @observerly/iris #289

feat: add (s *StarsExtractor) RejectMisalignedPixels() to stars module in @observerly/iris

feat: add (s *StarsExtractor) RejectMisalignedPixels() to stars module in @observerly/iris #289

Workflow file for this run

name: iris/ci
on:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: CI/CD Build
strategy:
matrix:
go: [ '1.20.x', '1.21.x', '1.22.x', '1.23.x' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Go Setup
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Go Test
run: go test ./... -race -coverprofile=coverage.txt -covermode=atomic