Skip to content

Commit 4037939

Browse files
authored
Switch to github workflows (#1)
1 parent 499d1c7 commit 4037939

File tree

4 files changed

+25
-156
lines changed

4 files changed

+25
-156
lines changed

.github/workflows/workflow.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on: [push, pull_request]
2+
3+
name: build
4+
5+
jobs:
6+
build: # TODO: split by OS
7+
strategy:
8+
fail-fast: false
9+
max-parallel: 3
10+
matrix:
11+
ghc: ['8.10', '9.0', '9.2']
12+
os: [ubuntu-latest]
13+
runs-on: ${{ matrix.os }}
14+
name: ${{ matrix.os }} ghc-${{ matrix.ghc }}
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- uses: haskell/actions/setup@v1
19+
with:
20+
ghc-version: ${{ matrix.ghc }}
21+
cabal-version: ${{ matrix.cabal }}
22+
23+
- run: cabal build --only-dependencies -j2
24+
- run: cabal build

.travis.yml

Lines changed: 0 additions & 134 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# aeson-tiled
2-
[![Build Status](https://travis-ci.org/schell/aeson-tiled.svg?branch=master)](https://travis-ci.org/schell/aeson-tiled)
3-
[![Build Status](https://ci.appveyor.com/api/projects/status/github/schell/aeson-tiled)]((https://ci.appveyor.com/api/projects/status/github/schell/aeson-tiled))
2+
43
[![Hackage](https://img.shields.io/hackage/v/aeson-tiled.svg)](https://hackage.haskell.org/package/aeson-tiled)
54

65
`aeson-tiled` is the spiritual successor to `htiled`. `htiled` uses `hxt` which relies

appveyor.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)