Skip to content

Fixed Decode() to properly handle default value for Key target if it is not found in XML. #23

Fixed Decode() to properly handle default value for Key target if it is not found in XML.

Fixed Decode() to properly handle default value for Key target if it is not found in XML. #23

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Build
run: go build -v ./...
env:
GO111MODULE: on
- name: Run test coverage
run: go test -coverprofile=coverage.txt -covermode=atomic -v ./...
env:
GO111MODULE: on
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}