FeDirect/.forgejo/workflows/ci.yaml
CenTdemeern1 3671085acc
Some checks failed
Build & Test / build-run (push) Failing after 27s
Use circleci's image instead
2025-02-03 22:36:46 +01:00

20 lines
450 B
YAML

name: Build & Test
on: [push]
jobs:
build-run:
runs-on: docker
container:
image: cimg/rust:1.84.1-node
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