Skip to content

Add Option to Ignore Minor Writing Errors in Exiftool (-m Flag) (#72) #89

Add Option to Ignore Minor Writing Errors in Exiftool (-m Flag) (#72)

Add Option to Ignore Minor Writing Errors in Exiftool (-m Flag) (#72) #89

Workflow file for this run

name: go-exiftool-ci
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.15.0'
- name: Environment dependencies
run: |
sudo apt-get update
sudo apt-get -q -y install libimage-exiftool-perl
exiftool -ver
go get -v
- name: Tests
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
- name: Coverage publication
run: bash <(curl -s https://codecov.io/bash)