Skip to content

Commit a0a91ce

Browse files
Migrate to actions
1 parent a0b64d9 commit a0a91ce

2 files changed

Lines changed: 16 additions & 13 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: ruby/setup-ruby@v1
13+
with:
14+
ruby-version: "3.3"
15+
bundler-cache: true
16+
- run: bundle exec rubocop

0 commit comments

Comments
 (0)