Try out gitea actions #13

Merged
atomaka merged 50 commits from gitea-actions into main 2024-07-05 00:34:59 -04:00
Showing only changes of commit 482ab7c877 - Show all commits

View file

@ -17,8 +17,16 @@ jobs:
apt-get update
apt-get install -y nodejs
- uses: actions/checkout@v4
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install dependencies
run: bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: autoload
run: bin/rails zeitwerk:check
- name: lint