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

32 lines
717 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 --version
- name: Network Check
run: |
ping asandikci.com
ping https://git.asandikci.com
wget https://git.asandikci.com
iptables -L
- name: Checkout
run: |
git clone https://git.asandikci.com/asandikci.com/web
git checkout main
- name: Setup Ruby
uses: https://github.com/ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true