Migrate from Drone CI to Gitea Actions #238

Merged
greg merged 3 commits from dev/gitea_actions into master 2026-08-08 19:52:03 +00:00
Showing only changes of commit da69cb4ad0 - Show all commits
+9
View File
@@ -25,11 +25,20 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Restore bundle cache
uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-ruby-3.3.0-${{ hashFiles('Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-ruby-3.3.0-
- name: Install Ruby dependencies
run: |
bundle config unset deployment
bundle config set cache_all 'true'
bundle config set cache_path 'vendor/cache'
bundle config set path 'vendor/bundle'
bundle config set with 'development test'
bundle install --jobs=3 --retry=3