standard-build/.gitea/workflows/test-environment.yaml

16 lines
503 B
YAML
Raw Normal View History

2023-08-26 19:46:29 +01:00
name: Environment Setup Test
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on: [push, pull_request]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: cd ${{ github.workspace }}
- name: Run repository setup scripts
2023-08-26 19:47:22 +01:00
run: |
sh setup.sh
sh scripts/get-docker.sh
2023-08-26 19:46:29 +01:00
- name: Check if Docker was installed
run: docker run hello-world