16 lines
387 B
YAML
16 lines
387 B
YAML
name: Scripts Testing
|
|
on: [push]
|
|
|
|
jobs:
|
|
scripts-download-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ gitea.workspace }}
|
|
- name: Execute download script bash
|
|
run: |
|
|
bash ${{ gitea.workspace }}/scripts-download.sh
|