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

Commit

Permalink
Merge pull request #1108 from atom/migrate-to-gh-actions
Browse files Browse the repository at this point in the history
Migrate to Github Actions
  • Loading branch information
darangi authored Apr 26, 2021
2 parents cd15a42 + ad41c5b commit d2a02b1
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 48 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on: [push]

env:
CI: true

jobs:
Test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
channel: [stable, beta]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: UziTech/action-setup-atom@v2
with:
version: ${{ matrix.channel }}
- name: Install dependencies
run: apm install
- name: Run tests
run: atom --test spec
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

27 changes: 0 additions & 27 deletions appveyor.yml

This file was deleted.

0 comments on commit d2a02b1

Please sign in to comment.