Add Option to Ignore Minor Writing Errors in Exiftool (-m Flag) (#72) #89
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |