We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3855240 + a5cac2a commit b1ac84eCopy full SHA for b1ac84e
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+env:
6
+ CI: true
7
8
+jobs:
9
+ Test:
10
+ strategy:
11
+ matrix:
12
+ os: [ubuntu-latest, macos-latest]
13
+ channel: [stable, beta]
14
+ runs-on: ${{ matrix.os }}
15
+ steps:
16
+ - uses: actions/checkout@v1
17
+ - uses: UziTech/action-setup-atom@v2
18
+ with:
19
+ version: ${{ matrix.channel }}
20
+ - name: Install dependencies
21
+ run: apm install
22
+ - name: Run tests
23
+ run: atom --test spec
.travis.yml
appveyor.yml
0 commit comments