From e0e2e58551b2a5090820804d771013bd96d187ac Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Wed, 26 Feb 2020 16:01:23 +0100 Subject: Replace CircleCI with GitHub Actions --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml (limited to '.github/workflows') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..a8f85e0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: 'CI' +on: +- 'push' +jobs: + build: + runs-on: 'ubuntu-latest' + steps: + - uses: 'actions/checkout@v1' + - uses: 'mstksg/setup-stack@v1' + - uses: 'actions/cache@v1' + with: + path: '$HOME/.stack' + key: "${{ runner.os }}-v1-stack-${{ hashFiles('stack.yaml') }}" + restore-keys: '${{ runner.os }}-v1-stack' + - run: 'stack build --test' -- cgit v1.2.3