Skip to content

Commit

Permalink
Set up continuous integration
Browse files Browse the repository at this point in the history
  • Loading branch information
fragglet committed Jul 17, 2023
1 parent dfcb204 commit 55687cc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Continuous Integration

on: [push, pull_request]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Build
run: go build -v ipxbox.go

0 comments on commit 55687cc

Please sign in to comment.