Skip to content

Add a way to set the working directory #26

Add a way to set the working directory

Add a way to set the working directory #26

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
go-build:
strategy:
matrix:
go-version: [1.16]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: go build .
docker-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build Container
run: docker build -f Dockerfile .