feat: remove CI/CD

This commit is contained in:
2025-07-25 13:06:16 +02:00
parent 83bca4a02a
commit 3d1ed0ef29
2 changed files with 0 additions and 48 deletions

View File

@@ -1,27 +0,0 @@
name: build
on:
push:
branches: [prod]
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Zig
run: |
ZIG_VERSION=0.14.1
curl -L https://ziglang.org/download/${ZIG_VERSION}/zig-x86_64-linux-${ZIG_VERSION}.tar.xz | tar -xJ
echo "${PWD}/zig-x86_64-linux-${ZIG_VERSION}" >> $GITHUB_PATH
- name: Build binary
run: zig build
- name: Prepare artifact
run: |
mkdir -p out
cp zig-out/bin/snake out/

View File

@@ -1,21 +0,0 @@
name: test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Zig
run: |
# See https://ziglang.org/download/
ZIG_VERSION=0.14.1
curl -L https://ziglang.org/download/${ZIG_VERSION}/zig-x86_64-linux-${ZIG_VERSION}.tar.xz | tar -xJ
echo "${PWD}/zig-x86_64-linux-${ZIG_VERSION}" >> $GITHUB_PATH
- name: Run tests
run: zig build test