Skip to content

Commit

Permalink
refactor: rename ci.yml to build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gabor-boros committed Oct 11, 2021
1 parent 180126b commit 4165ea4
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 36 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build

'on':
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
strategy:
matrix:
go:
- '1.17'
os:
- ubuntu-latest
- windows-latest
- macOS-latest
runs-on: '${{ matrix.os }}'
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '${{ matrix.go }}'
- name: Prerequisites
run: make prerequisites
- name: Lint
run: make lint
- name: Test
run: make test
- name: Build
run: make build
36 changes: 0 additions & 36 deletions .github/workflows/ci.yml

This file was deleted.

0 comments on commit 4165ea4

Please sign in to comment.