Try out gitea actions #13
1 changed files with 9 additions and 1 deletions
|
@ -5,9 +5,17 @@ on:
|
|||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ruby-3.2.0
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 3.2.0
|
||||
- name: Install dependencies
|
||||
run: bundle install
|
||||
- name: autoload
|
||||
|
|
Loading…
Reference in a new issue