Skip to content

Commit

Permalink
Merge pull request #14 from codecademy-engineering/DEVOPS-6292
Browse files Browse the repository at this point in the history
[DEVOPS-6292] Migrate CICD from CircleCI to Github Actions
  • Loading branch information
anaharris authored Aug 10, 2023
2 parents 8fd9cff + 2256bcd commit 6ac056f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 33 deletions.
31 changes: 0 additions & 31 deletions .circleci/config.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint

on:
pull_request:
branches:
- main

jobs:
lint:
name: Lint the app
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Ruby
uses: ruby/setup-ruby@v1 # no need for ruby-version because we have a .ruby_version file
with:
bundler-cache: true

- name: Run Rubocop
run: bundle exec rubocop --config ./.rubocop.yml
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
codecademy-style (0.1.8)
codecademy-style (0.1.9)
rubocop (= 0.79)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/codecademy_style/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module CodecademyStyle
VERSION = '0.1.8'
VERSION = '0.1.9'
end

0 comments on commit 6ac056f

Please sign in to comment.