Skip to content

Commit

Permalink
Fix Github Actions Ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardroche committed Jun 10, 2021
1 parent 3632ae9 commit 157ecb9
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -3,14 +3,20 @@ name: Continuous Integration
on: [push, pull_request]

env:
SUBLIME_TEXT_VERSION: 3
PACKAGE: NeoVintageous

jobs:
linux:
runs-on: ubuntu-latest
container: sublimetext/unittesting
options: --cap-add=NET_ADMIN
strategy:
fail-fast: true
matrix:
version: [3]
container:
image: sublimetext/unittesting
options: --cap-add=NET_ADMIN
env:
SUBLIME_TEXT_VERSION: ${{ matrix.version }}
steps:
- uses: actions/checkout@v1
- run: export DISPLAY=":99.0"
Expand All @@ -26,6 +32,12 @@ jobs:
macos:
runs-on: macos-latest
strategy:
fail-fast: true
matrix:
version: [3]
env:
SUBLIME_TEXT_VERSION: ${{ matrix.version }}
steps:
- uses: actions/checkout@v1
- run: curl -OL https://raw.githubusercontent.com/SublimeText/UnitTesting/master/sbin/github.sh
Expand Down

0 comments on commit 157ecb9

Please sign in to comment.