Skip to content

fix: correct binary path in e2e tests to use bin directory #65

fix: correct binary path in e2e tests to use bin directory

fix: correct binary path in e2e tests to use bin directory #65

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
check-latest: true
- name: Cache Go modules and build cache
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install development tools
run: make install
- name: Run all checks
run: make ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: ./coverage.txt
fail_ci_if_error: true
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
slug: platformlabs-co/fetchr.sh