chore: remove obsolete CI workflow (ci.yml)
Some checks failed
CI (Arch Linux) / build (push) Has been cancelled

This commit is contained in:
benzjeremy 2026-09-17 10:37:32 +02:00
parent 5c6579d472
commit de3eec1805

View File

@ -1,37 +0,0 @@
name: CI
on:
push:
paths:
- "**/*.go"
- "**/*.js"
- "**/*.py"
- ".github/workflows/ci.yml"
jobs:
build:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
pacman -Sy --noconfirm git base-devel go nodejs npm python-pip
- name: Build Go
run: |
go build ./...
- name: Lint Go
run: |
go vet ./...
- name: Test Go
run: |
go test -race ./...
- name: Lint JS
run: |
npm ci && npx eslint .
- name: Lint Python
run: |
pip install flake8 && flake8 .
- name: Run tests (Node)
run: |
npm test