Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6


- name: Setup Nim
uses: alaviss/setup-nim@0.1.1
with:
version: devel
Comment thread
ringabout marked this conversation as resolved.
path: 'nim'

- name: Nim version
run: nim --version

- name: install deps
run: |
sudo apt update
sudo apt install libx11-dev libxft-dev fonts-freefont-ttf fonts-dejavu-core
Comment thread
ringabout marked this conversation as resolved.


- name: Build
run: nimble install -y