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

21 lines
454 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 app
nimble build --release