CItest/.forgejo/workflows/demo.yaml
asandikci c49a01a9ca
Some checks failed
/ test (push) Failing after 3s
Update .forgejo/workflows/demo.yaml
2024-11-10 22:25:26 +03:00

25 lines
513 B
YAML

on:
push:
workflow_dispatch:
jobs:
test:
runs-on: docker
container:
image: bitnami/minideb:bullseye-arm64
steps:
- name: Dependencies
run: |
apt update -y
apt install git -y
git -v
- name: Checkout
run: |
git clone https://git.asandikci.com/asandikci.com/web
git checkout main
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true