Skip to content
This repository was archived by the owner on Mar 17, 2021. It is now read-only.

Commit f056b37

Browse files
committed
Use only GitHub Actions for CI
1 parent 7c2ee13 commit f056b37

File tree

3 files changed

+9
-37
lines changed

3 files changed

+9
-37
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ name: CI
55
on:
66
pull_request:
77
push:
8-
branches: [master]
8+
branches: [main]
99

1010
jobs:
1111
build:
1212
name: ghc ${{ matrix.versions.ghc }}
13-
runs-on: ubuntu-16.04
13+
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
1616
versions:
@@ -22,17 +22,17 @@ jobs:
2222
cabal: '2.4'
2323
- ghc: '8.6.5'
2424
cabal: '3.2'
25-
- ghc: '8.8.3'
26-
cabal: '3.2'
27-
- ghc: '8.10.1'
28-
cabal: '3.2'
25+
- ghc: '8.8.4'
26+
cabal: '3.4'
27+
- ghc: '8.10.2'
28+
cabal: '3.4'
2929

3030
steps:
3131
- uses: actions/checkout@v2
3232
if: >-
3333
github.event.action == 'opened' ||
3434
github.event.action == 'synchronize' ||
35-
github.event.ref == 'refs/heads/master'
35+
github.event.ref == 'refs/heads/main'
3636
3737
- uses: actions/setup-haskell@v1
3838
name: Setup Haskell

.travis.yml

-28
This file was deleted.

hslua-module-path.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ tested-with: GHC == 8.0.2
1919
, GHC == 8.2.2
2020
, GHC == 8.4.4
2121
, GHC == 8.6.5
22-
, GHC == 8.8.3
23-
, GHC == 8.10.1
22+
, GHC == 8.8.4
23+
, GHC == 8.10.2
2424

2525
source-repository head
2626
type: git

0 commit comments

Comments
 (0)