Install git in patch CI
Some checks failed
check / check (push) Failing after 36s

This commit is contained in:
matamune 2026-05-18 00:10:40 +00:00
parent b41b82e41e
commit 37d622a7ec
Signed by: matamune
GPG key ID: 3BB8E7D3B968A324

View file

@ -12,6 +12,10 @@ jobs:
runs-on: bun
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
run: |
apt-get update
apt-get install -y git docker.io
- name: Install
run: bun install --frozen-lockfile
- name: Typecheck
@ -23,7 +27,4 @@ jobs:
- name: Build docs
run: bun run docs:build
- name: Build container
run: |
apt-get update
apt-get install -y docker.io
docker build -t patch:ci .
run: docker build -t patch:ci .