22 lines
462 B
YAML
22 lines
462 B
YAML
on:
|
|
push:
|
|
workflow_dispatch:
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
github-server-url: 'https://git.asandikci.com'
|
|
|
|
- name: Checks
|
|
run: ls -la /workspace/asandikci/CItest
|
|
|
|
- name: Setup Ruby
|
|
uses: https://github.com/ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 3.2
|
|
bundler-cache: true
|