aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/CI.yml
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-09-16 20:39:02 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-09-16 21:39:43 +0300
commit81f365e99636104ff81151370048a51e8ae8027a (patch)
tree0bd2781ad73fdc982abdcb70f9f44c551ac76bcf /.github/workflows/CI.yml
parentupdate CI workflow for go 1.21.0 (diff)
downloadsdp.go-81f365e99636104ff81151370048a51e8ae8027a.tar.gz
sdp.go-81f365e99636104ff81151370048a51e8ae8027a.tar.bz2
sdp.go-81f365e99636104ff81151370048a51e8ae8027a.zip
feat: parsing sar custom data (#4)
Diffstat (limited to '.github/workflows/CI.yml')
-rw-r--r--.github/workflows/CI.yml40
1 files changed, 0 insertions, 40 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
deleted file mode 100644
index f0e5e51..0000000
--- a/.github/workflows/CI.yml
+++ /dev/null
@@ -1,40 +0,0 @@
1name: CI
2
3on:
4 push:
5 branches: [ "main" ]
6 paths-ignore:
7 - '.github/*'
8 - '.gitignore'
9 - '**.md'
10 - 'LICENSE'
11 pull_request:
12 branches: [ "main" ]
13
14jobs:
15 build-windows:
16 name: Windows Build
17 runs-on: ubuntu-latest
18 steps:
19 - uses: actions/checkout@v3
20
21 - name: Setup Go environment
22 uses: actions/setup-go@v4
23 with:
24 go-version: '1.21.0'
25 architecture: amd64
26 - name: Build
27 run: cd cmd ; env GOOS=windows GOARCH=amd64 go build .
28 build-linux:
29 name: Linux Build
30 runs-on: ubuntu-latest
31 steps:
32 - uses: actions/checkout@v3
33
34 - name: Setup Go environment
35 uses: actions/setup-go@v4
36 with:
37 go-version: '1.21.0'
38 architecture: amd64
39 - name: Build
40 run: cd cmd ; env GOOS=linux GOARCH=amd64 go build .