norgbackup/.forgejo/workflows/build_linux.yaml
Paul Wilde 708bf2319c
All checks were successful
Build for Linux / test-build (push) Successful in 36s
added test action
2025-01-03 23:23:19 +00:00

21 lines
457 B
YAML

name: Build for Linux
env:
BUILD_DEPS: git
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.server_url }}/${{ github.repository }}
- name: Build
run: |
cd norgbackup
./scripts/build.sh