Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit e98e029

Browse files
committed
setup GH actions
1 parent 0099ad1 commit e98e029

File tree

3 files changed

+23
-39
lines changed

3 files changed

+23
-39
lines changed

.github/workflows/ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -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, windows-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

-12
This file was deleted.

appveyor.yml

-27
This file was deleted.

0 commit comments

Comments
 (0)