Skip to content

Commit

Permalink
update ci.yml for go 1.14 (#29)
Browse files Browse the repository at this point in the history
* update ci.yml for go 1.14

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update ci.yml
  • Loading branch information
psampaz authored Feb 27, 2020
1 parent 4b29f9c commit 3ab7b38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
tests:
strategy:
matrix:
go-version: [1.11.x, 1.12.x, 1.13.x]
go-version: [1.11.x, 1.12.x, 1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
name: tests
runs-on: ${{ matrix.platform }}
Expand All @@ -21,7 +21,7 @@ jobs:
coverage:
strategy:
matrix:
go-version: [1.13.x]
go-version: [1.14.x]
platform: [ubuntu-latest]
name: coverage
runs-on: ${{ matrix.platform }}
Expand All @@ -35,7 +35,7 @@ jobs:
- run: |
go test -v -race -cover -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/[email protected].4
uses: codecov/[email protected].5
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.txt
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [vX.X.X] UNRELEASED
## [v0.2.0] 2020-02-27
### Added
- Delete operation
- DeleteRange operation
- Pop operation
- Shuffle operation
- Tests on Go 1.14

## [v0.1.0] 2019-12-03
### Added
Expand Down

0 comments on commit 3ab7b38

Please sign in to comment.