Skip to content

Support For Resume Gateway URL #61

Support For Resume Gateway URL

Support For Resume Gateway URL #61

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: '^1.17.5'
id: go
- name: Checkout repository
uses: actions/checkout@v1
- name: Create build output directory
run: mkdir build
- name: Build
run: go build -v -o build .
- name: Upload artifact
uses: actions/upload-artifact@v1
with:
name: gateway
path: build