Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #267 from alphagov/github-actions
Browse files Browse the repository at this point in the history
Switch to GitHub Actions
  • Loading branch information
kevindew authored May 6, 2020
2 parents d46c2c0 + 1a86a1b commit 1193e8b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 19 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
- run: bundle install --jobs 4 --retry 3
- run: bundle exec rake
2 changes: 0 additions & 2 deletions .rspec
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
--require spec_helper
--color
--format progress
10 changes: 0 additions & 10 deletions Jenkinsfile

This file was deleted.

10 changes: 5 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
require "rake"
require "rubocop/rake_task"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = Dir.glob("spec/**/*_spec.rb")
t.rspec_opts = "--format documentation"
end
task default: :spec
RuboCop::RakeTask.new
RSpec::Core::RakeTask.new

task default: %i[rubocop spec]
2 changes: 0 additions & 2 deletions jenkins.sh

This file was deleted.

0 comments on commit 1193e8b

Please sign in to comment.