norgbackup/.forgejo/workflows/build_linux.yaml
Paul Wilde ce7a87f999
Some checks failed
Build for Linux / test-build (push) Failing after 40s
added test action
2025-01-03 23:18:57 +00:00

21 lines
488 B
YAML

name: Build for Linux
env:
BUILD_DEPS: git nim nimble
on: [push]
jobs:
test-build:
runs-on: docker
container:
image: nimlang/nim:latest
steps:
- name: Install Dependencies
run: |
apt update && apt install --yes $BUILD_DEPS
- name: Clone repo
run: |
git clone ${{ github.ref_name }} ${{ github.server_url }}/${{ github.repository }}
- name: Build
run: |
cd app
nimble build --release