Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryabenbc committed Mar 4, 2021
1 parent 520e577 commit f6c8d74
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/cyber.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,20 @@ on:

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.16]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Enter riotpot directory
run: cd riotpot

- name: Checkout
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: ${{ matrix.go-version }}

- name: Build
run: go build -v

0 comments on commit f6c8d74

Please sign in to comment.