alog/.forgejo/workflows/test.yml
Ava Affine 0827a07975
Some checks failed
per-push tests / test (push) Failing after 12m57s
per-push tests / build (push) Failing after 13m18s
add forgejo ci
Signed-off-by: Ava Affine <ava@sunnypup.io>
2025-07-21 09:48:25 -07:00

44 lines
837 B
YAML

name: "per-push tests"
on:
push:
branches:
- main
pull_request:
pull_request_target:
types:
- opened
- synchronized
- reopened
jobs:
build:
runs-on: docker
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install toolchain
run: |
- apt update
- apt install -y make
- apt install -y gcc
- export CC=$(which gcc)
- name: compile
run: |
make alog-so
test:
runs-on: docker
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install toolchain
run: |
- apt update
- apt install -y make
- apt install -y gcc
- export CC=$(which gcc)
- name: compile
run: |
make alog-tests