Skip to content

Read files in chunks to avoid reading entire files in memory #25

Read files in chunks to avoid reading entire files in memory

Read files in chunks to avoid reading entire files in memory #25

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Test
run: make test
- name: Build
run: make build