From 05a5c668e06a71fafc858fceb488b86f67d99634 Mon Sep 17 00:00:00 2001 From: Jack Rothrock Date: Thu, 25 Apr 2024 18:21:57 -0600 Subject: [PATCH] Add rails gemfile for GHA --- .github/workflows/test.yml | 1 + .gitignore | 2 +- gems/rails.gemfile | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 gems/rails.gemfile diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06657aa..05b868d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,6 +9,7 @@ jobs: fail-fast: false matrix: ruby: ['2.6', '2.7', '3.0', '3.1', '3.2' ] + BUNDLE_GEMFILE: gems/rails.gemfile runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 diff --git a/.gitignore b/.gitignore index 4f37bd8..6e44035 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,4 @@ Gemfile.lock # Ignore .idea .idea # Ignore log files -log/*.log \ No newline at end of file +log/*.log diff --git a/gems/rails.gemfile b/gems/rails.gemfile new file mode 100644 index 0000000..84bc14f --- /dev/null +++ b/gems/rails.gemfile @@ -0,0 +1,3 @@ +eval_gemfile("../Gemfile") + +gem "rails"