Merge branch 'master' of https://github.com/TheAxeDude/ZiniGo
This commit is contained in:
commit
0ac885bca7
|
|
@ -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 .
|
||||
|
|
@ -8,10 +8,10 @@ ZiniGo can be downloaded for Windows and Linux at https://github.com/TheAxeDude/
|
|||
|
||||
## Usage
|
||||
|
||||
./zinigo -u=Username -p=Password
|
||||
./zinigo -u=Username -p=Password [-c=/path/to/chrome/executable]
|
||||
|
||||
## 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
|
||||
ZiniGo logs into Zinio, and pulls a list of all issues purchased.
|
||||
|
|
|
|||
Loading…
Reference in New Issue