This commit is contained in:
Longinos
2024-09-20 10:36:11 +01:00
parent fc2c34db13
commit 7ede683b5e

View File

@@ -0,0 +1,21 @@
name: Test Runner
on:
push:
branches:
- main
jobs:
test-runner:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run environment checks
run: |
echo "This job is running on the runner!"
echo "Runner OS: ${{ runner.os }}"
echo "Runner architecture: ${{ runner.arch }}"
echo "Job status: ${{ job.status }}"