Skip to content

Commit

Permalink
Migrate tests to run on github actions (#136)
Browse files Browse the repository at this point in the history
Connected to gramo-org/echo#7501
  • Loading branch information
skalar-bcawkwell authored Feb 16, 2024
1 parent 05fc11f commit 48e0789
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Tests

on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
push:
branches: [master]

concurrency:
group: ${{ github.head_ref || github.ref_name }}
cancel-in-progress: true

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref_name }}
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.3'
bundler-cache: true

- name: Run tests
run: bundle exec rspec
5 changes: 0 additions & 5 deletions codeship-services.yml

This file was deleted.

3 changes: 0 additions & 3 deletions codeship-steps.yml

This file was deleted.

0 comments on commit 48e0789

Please sign in to comment.