mirror of
https://github.com/actions/setup-go.git
synced 2025-06-30 13:13:43 +00:00
starting v2 and proxy support
This commit is contained in:
parent
9fbc767707
commit
4282769cc0
191 changed files with 5351 additions and 14572 deletions
20
.github/workflows/workflow.yml
vendored
20
.github/workflows/workflow.yml
vendored
|
@ -1,5 +1,13 @@
|
|||
name: Main workflow
|
||||
on: [push]
|
||||
name: build-test
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
jobs:
|
||||
run:
|
||||
name: Run
|
||||
|
@ -9,12 +17,12 @@ jobs:
|
|||
operating-system: [ubuntu-latest, windows-latest]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set Node.js 10.x
|
||||
uses: actions/setup-node@master
|
||||
- name: Setup node 12
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
version: 10.x
|
||||
node-version: 12
|
||||
|
||||
- name: npm install
|
||||
run: npm install
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue