Skip to content

Commit

Permalink
Merge pull request #1 from Ultramarine-Linux/w/ci-nimble
Browse files Browse the repository at this point in the history
feat(ci): nimble build
  • Loading branch information
madonuko authored May 31, 2024
2 parents 5327921 + 33ee53a commit ddcf020
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/nimble-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Nimble build
on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
nimble-build:
runs-on: ubuntu-latest
container:
image: ghcr.io/terrapkg/builder:f40
options: --cap-add=SYS_ADMIN --privileged

steps:
- name: Set workspace as safe
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install nim
run: dnf5 in -y nim nim-tools

- name: Nimble build
run: nimble build -y

0 comments on commit ddcf020

Please sign in to comment.