diff options
| author | Arda Serdar Pektezol <1669855+BiSaXa@users.noreply.github.com> | 2022-09-04 15:03:48 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-04 15:03:48 +0300 |
| commit | 9e74800861f8dfa4e8aa91844e21161fca037e73 (patch) | |
| tree | 964a157eb318d544967e8e20e42dd7c7526dc0c4 | |
| parent | Create CI.yml (diff) | |
| download | bitreader-9e74800861f8dfa4e8aa91844e21161fca037e73.tar.gz bitreader-9e74800861f8dfa4e8aa91844e21161fca037e73.tar.bz2 bitreader-9e74800861f8dfa4e8aa91844e21161fca037e73.zip | |
Delete .github/workflows directory
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/CI.yml | 40 |
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 @@ | |||
| 1 | name: CI | ||
| 2 | |||
| 3 | on: | ||
| 4 | push: | ||
| 5 | branches: [ "main" ] | ||
| 6 | paths-ignore: | ||
| 7 | - '.github/*' | ||
| 8 | - '.gitignore' | ||
| 9 | - '**.md' | ||
| 10 | - 'LICENSE' | ||
| 11 | pull_request: | ||
| 12 | branches: [ "main" ] | ||
| 13 | |||
| 14 | jobs: | ||
| 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 | ||