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

Commit

Permalink
Migrate to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sadick254 committed Jun 15, 2021
1 parent de83bd4 commit db48d6b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 42 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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 windows-build-tools
if: ${{ matrix.os == 'windows-latest' }}
run: |
npm config set msvs_version 2019
- name: Install dependencies
run: apm install
- name: Run tests
run: npm run test
42 changes: 0 additions & 42 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Teletype for Atom
![CI Status](https://github.com/atom/teletype/actions/workflows/main.yml/badge.svg)

An Atom package that lets developers share their workspace with team members and collaborate on code in real time.

Expand Down

0 comments on commit db48d6b

Please sign in to comment.