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

19 lines
441 B
YAML

name: Build for Linux
env:
BUILD_DEPS: git nim nimble
on: [push]
jobs:
test-build:
runs-on: docker
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