diff options
| author | Michael Tews <michael@tews.dev> | 2025-11-26 10:43:35 +0100 |
|---|---|---|
| committer | Michael Tews <michael@tews.dev> | 2025-11-26 10:53:52 +0100 |
| commit | 25710087bff1c64a88a34f899e735f1083eefe65 (patch) | |
| tree | db6960b137725836a40c74a09e838c29d74806f5 /.github | |
| parent | 639da8adad4863d52fed8e76efed2fab35f9d3a9 (diff) | |
build: adds build action
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/go.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..058bcfe --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,22 @@ +name: Go + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.25.4' + + - name: Build + run: go build -v . -o rclone-studip |
