aob-lemmy-bot/.forgejo/workflows/test.yml
Neshura 1f10a39db1
Some checks failed
Run Tests on Code / run-tests (push) Failing after 11s
Add missing Node install step to Actions + Formatting
2023-12-19 22:19:21 +01:00

23 lines
549 B
YAML

name: 'Run Tests on Code'
author: 'Neshura'
on:
push:
tags-ignore:
- '**'
branches:
- '**'
jobs:
run-tests:
runs-on: docker
container: rust:latest
steps:
-
name: Installing Node
run: apt update && apt install -y nodejs
-
name: Checking Out Repository Code
uses: https://code.forgejo.org/actions/checkout@v3
-
name: Run Clippy
run: cargo clippy