Skip to content

fixes #187 - Update to latest jlaffaye/ftp library to fix issue where… #198

fixes #187 - Update to latest jlaffaye/ftp library to fix issue where…

fixes #187 - Update to latest jlaffaye/ftp library to fix issue where… #198

Workflow file for this run

name: codecov
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
cache: false
- name: Checkout code
uses: actions/checkout@v4
- run: go test -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)