This commit is contained in:
Barold 2020-02-24 19:58:03 +02:00
commit 0ac885bca7
2 changed files with 30 additions and 2 deletions

28
.github/workflows/go.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build -v .

View File

@ -8,10 +8,10 @@ ZiniGo can be downloaded for Windows and Linux at https://github.com/TheAxeDude/
## Usage ## Usage
./zinigo -u=Username -p=Password ./zinigo -u=Username -p=Password [-c=/path/to/chrome/executable]
## Requirements ## Requirements
Google chrome installed, and accessible via the command `google-chrome` Google chrome installed, and accessible via the command `google-chrome`, or at a location passed in via the -c parameter.
## How it works ## How it works
ZiniGo logs into Zinio, and pulls a list of all issues purchased. ZiniGo logs into Zinio, and pulls a list of all issues purchased.