Skip to content

Commit

Permalink
Try and fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
danielholmes committed Feb 17, 2020
1 parent 791c950 commit cde874e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Haskell Stack
use: mstksg/setup-stack@v1
uses: mstksg/setup-stack@v1
- name: "Install system deps"
run: "sudo apt install -y libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev"
run: |
sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse"
sudo apt-get update -y -qq
sudo apt install -y libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev
- name: "Run build"
run: "stack --no-terminal --skip-ghc-check test --pedantic"

0 comments on commit cde874e

Please sign in to comment.