setup-nim/.forgejo/workflows/test.yaml
mr-boneman 6d67bb1832
All checks were successful
/ test (push) Successful in 1m2s
nodejs
2024-05-31 11:47:21 +02:00

22 lines
No EOL
672 B
YAML

on:
push:
jobs:
test:
runs-on: docker
container:
image: registry.fedoraproject.org/fedora:40
steps:
- name: install build env
run: dnf group install -y "C Development Tools and Libraries" "Development Tools" && dnf install nodejs -y
- uses: https://git.ws-essen.de/actions/setup-nim@main
- name: clone rpmtest nimble
run: git clone https://git.ws-essen.de/mr-boneman/rpmtest.git .
- name: build with nimble
run: nimble build
- name: run rpmtest
run: ./rpmtest
- uses: https://code.forgejo.org/actions/upload-artifact@v3
with:
name: rpmtest
path: rpmtest