Skip to content

migrate to github actions #2

migrate to github actions

migrate to github actions #2

Workflow file for this run

name: Run sanitycheck
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dlang-community/setup-dlang@v1
- name: 'Run sanitycheck'
run: |
git clone https://github.com/dlang-tour/core ../tour
mkdir -p ../tour/public/content/lang
mv * ../tour/public/content/lang
export PATH=$PATH:$PWD
(cd ../tour && dub --compiler=${DC} -- --sanitycheck .)