Skip to content

Commit

Permalink
Migrate from AppVeyor CI to GH Actions (#125)
Browse files Browse the repository at this point in the history
Merge pull request 125
  • Loading branch information
ashmaroli authored Sep 22, 2021
1 parent 94df7b0 commit fe70228
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 34 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@ on:

jobs:
ci:
name: 'Ruby ${{ matrix.ruby_version }}'
runs-on: 'ubuntu-latest'
name: "Ruby ${{ matrix.ruby_version }} (${{ matrix.os }})"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "windows-latest"
ruby_version:
- 2.5
- 2.7
- "2.5"
- "2.7"
- "3.0"
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -31,8 +35,8 @@ jobs:
run: bash script/test --force-color

style_check:
name: 'Style Check (Ruby ${{ matrix.ruby_version }})'
runs-on: 'ubuntu-latest'
name: "Style Check (Ruby ${{ matrix.ruby_version }})"
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
Expand Down
28 changes: 0 additions & 28 deletions appveyor.yml

This file was deleted.

0 comments on commit fe70228

Please sign in to comment.