Skip to content

feat: Add discount programs scraper and parser with tests #225

feat: Add discount programs scraper and parser with tests

feat: Add discount programs scraper and parser with tests #225

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: develop
pull_request:
branches: develop
workflow_dispatch:
jobs:
build_ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Setup
run: make setup
- name: Check
run: make check
- name: Build
run: make build
build_windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
- name: Setup
run: .\build.bat setup
- name: Check
run: .\build.bat check
- name: Build
run: .\build.bat build