Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
ci: create initial CI/CD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Ofadiman committed Feb 25, 2024
1 parent b4582a6 commit 143abe7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Main

on:
push:
branches:
- "*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup golang
uses: actions/setup-go@v4
with:
go-version: 1.21.5

- name: Install dependencies
run: go mod download

- name: Build project
run: go build -o dist/dfsync -race

0 comments on commit 143abe7

Please sign in to comment.