Skip to content

Set environment variables for script function, script path and comman… #65

Set environment variables for script function, script path and comman…

Set environment variables for script function, script path and comman… #65

Workflow file for this run

name: CI
on:
push:
branches:
- master
- feature/*
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Build
run: ./scripts/build
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Test
run: ./scripts/test -v