Skip to content

Feat: Add --prefer-hardlinks flag to avoid duplicate storage for unchanged files #107

Feat: Add --prefer-hardlinks flag to avoid duplicate storage for unchanged files

Feat: Add --prefer-hardlinks flag to avoid duplicate storage for unchanged files #107

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.26.3'
- name: Get dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
- name: Test build
run: go build -o lilt .
- name: Test help command
run: ./lilt --help
- name: Test version command
run: ./lilt --version