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

21 lines
464 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
nimble build -y --release