FeDirect/.forgejo/workflows/ci.yaml
kio 5dde457d45
Some checks failed
Test build & run / build-run (push) Failing after 8s
use literal instead of relative
2025-02-03 21:11:06 +00:00

18 lines
404 B
YAML

name: Test build & run
on: [push]
jobs:
build-run:
runs-on: docker
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Deno 2
uses: https://github.com/denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Build using Cargo
run: cargo build --verbose
- name: Run unit tests
run: cargo test --verbose