Skip to content

Commit

Permalink
Merge pull request #60 from nicolasbock/ci
Browse files Browse the repository at this point in the history
Unify PR and main workflows
  • Loading branch information
dosaboy committed Aug 25, 2023
2 parents 7d16783 + fd0cfb6 commit 0adeb98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 25 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/pr-checks.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,24 @@ on:
push:
branches:
- main
pull_request:
branches:
- main

name: Tests/Jobs for main branch merges
jobs:
test:
strategy:
matrix:
go-version: [ 1.16.x ]
go-version: [ 1.16 ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Test and Build
run: make all

0 comments on commit 0adeb98

Please sign in to comment.