Fork package to github.com/itlightning/dateparse

Various other cleanup:
* Update README.md
* Update github workflows
* Add to copyright
* Add .gitignore
This commit is contained in:
Klondike Dragon
2024-01-08 21:59:42 -07:00
parent d5b3c60e9b
commit c943d3c348
11 changed files with 49 additions and 24 deletions

View File

@@ -10,13 +10,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.20
- name: Cache-Go
uses: actions/cache@v1
with:
@@ -30,7 +30,7 @@ jobs:
- name: Test
run: go test ./...
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest

View File

@@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.19.x]
go-version: [1.20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps: