Skip to content

Commit

Permalink
setup d checks action
Browse files Browse the repository at this point in the history
  • Loading branch information
omdxp committed Apr 20, 2024
1 parent 7a09759 commit d6fdf6b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/d-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: D Checks

on:
pull_request:
paths:
- ".github/workflows/d-checks.yml"
- "d/**"

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: dlang-community/setup-dlang@4c99aa991ce7d19dd3064de0a4f2f6b2f152e2d7

- name: Build & Test
run: |
cd d
dub build --compiler=$DC
dub test --compiler=$DC

0 comments on commit d6fdf6b

Please sign in to comment.