aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+BiSaXa@users.noreply.github.com>2022-09-04 15:03:48 +0300
committerGitHub <noreply@github.com>2022-09-04 15:03:48 +0300
commit9e74800861f8dfa4e8aa91844e21161fca037e73 (patch)
tree964a157eb318d544967e8e20e42dd7c7526dc0c4
parentCreate CI.yml (diff)
downloadbitreader-9e74800861f8dfa4e8aa91844e21161fca037e73.tar.gz
bitreader-9e74800861f8dfa4e8aa91844e21161fca037e73.tar.bz2
bitreader-9e74800861f8dfa4e8aa91844e21161fca037e73.zip
Delete .github/workflows directory
Diffstat (limited to '')
-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 7b0aabd..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-20.04
18 steps:
19 - uses: actions/checkout@v3
20
21 - name: Setup Go environment
22 uses: actions/setup-go@v3.3.0
23 with:
24 go-version: 1.18
25 architecture: amd64
26 - name: Build
27 run: env GOOS=windows GOARCH=amd64 go build bitreader.go
28 build-linux:
29 name: Linux Build
30 runs-on: ubuntu-20.04
31 steps:
32 - uses: actions/checkout@v3
33
34 - name: Setup Go environment
35 uses: actions/setup-go@v3.3.0
36 with:
37 go-version: 1.18
38 architecture: amd64
39 - name: Build
40 run: env GOOS=linux GOARCH=amd64 go build bitreader.go