Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Change dir to moss
Browse files Browse the repository at this point in the history
  • Loading branch information
der-eismann committed Apr 12, 2023
1 parent 128559d commit b3c6df1
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/d.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: D

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout source
uses: actions/checkout@v3
with:
path: moss

- name: Checkout libmoss source
uses: actions/checkout@v3
with:
repository: serpent-os/libmoss
path: libmoss
ref: main

- name: Setup D compiler
uses: dlang-community/setup-dlang@v1.3.0
with:
compiler: ldc-1.32.0

- name: Install deps
run: |
sudo apt-get install libcurl4-openssl-dev liblmdb-dev libxxhash-dev libzstd-dev
- name: Build & Test
run: |
cd moss
dub test

0 comments on commit b3c6df1

Please sign in to comment.