There was an error while loading. Please reload this page.
1 parent 8977147 commit 1c8f156Copy full SHA for 1c8f156
1 file changed
.github/workflows/copilot-setup-steps.yml
@@ -0,0 +1,33 @@
1
+name: Copilot Setup Steps
2
+
3
+# Automatically run the setup steps when they are changed to allow for easy validation, and
4
+# allow manual testing through the repository's "Actions" tab
5
+on:
6
+ workflow_dispatch:
7
+ push:
8
+ paths:
9
+ - .github/workflows/copilot-setup-steps.yml
10
+ pull_request:
11
12
13
14
+jobs:
15
+ copilot-setup-steps:
16
+ runs-on: ubuntu-latest
17
+ permissions:
18
+ contents: read
19
20
+ env:
21
+ ACTIVERECORD_GEMFILE: 'ar_8_latest'
22
+ AR_LAZY_PRELOAD_GEMFILE: 'ar_lazy_preload_master'
23
24
+ steps:
25
+ - uses: actions/checkout@v3
26
27
+ - name: Set up Ruby
28
+ uses: ruby/setup-ruby@v1
29
+ with:
30
+ ruby-version: head
31
32
+ - name: Install dependencies
33
+ run: bundle install
0 commit comments