Compare commits
2 Commits
21e3f1fc24
...
57fb1ddb09
| Author | SHA1 | Date |
|---|---|---|
|
|
57fb1ddb09 | |
|
|
8fdf3d75ee |
|
|
@ -0,0 +1,16 @@
|
||||||
|
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
|
||||||
|
run: |
|
||||||
|
sh setup.sh
|
||||||
|
sh scripts/get-docker.sh
|
||||||
|
- name: Check if Docker was installed
|
||||||
|
run: docker run hello-world
|
||||||
Loading…
Reference in New Issue