Skip to content
This repository was archived by the owner on Mar 8, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: GitHub Actions CI
on:
push:
branches:
- master
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@main

- run: shellcheck script/*
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Scripts To Rule Them All

[![Build Status](https://travis-ci.org/github/scripts-to-rule-them-all.svg?branch=master)](https://travis-ci.org/github/scripts-to-rule-them-all)

This is a set of boilerplate scripts describing the [normalized script pattern
that GitHub uses in its projects](http://githubengineering.com/scripts-to-rule-them-all/). While these
patterns can work for projects based on any framework or language, these
Expand Down Expand Up @@ -63,7 +61,7 @@ state of the app into shape for the current version that is checked out.

[`script/server`][server] is used to start the application.

For a web application, this might start up any extra processes that the
For a web application, this might start up any extra processes that the
application requires to run in addition to itself.

[`script/update`][update] should be called ahead of any application booting to ensure that
Expand Down
2 changes: 1 addition & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fi
if [ -f ".ruby-version" ] && [ -z "$(rbenv version-name 2>/dev/null)" ]; then
echo "==> Installing Ruby…"
rbenv install --skip-existing
which bundle >/dev/null 2>&1 || {
command -v bundle >/dev/null 2>&1 || {
gem install bundler
rbenv rehash
}
Expand Down