17 lines
304 B
YAML
17 lines
304 B
YAML
name: TestActions
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
- '!main'
|
|
|
|
jobs:
|
|
Test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "${{ toJson(github) }}"
|
|
- run: echo "${{ toJson(runner) }}"
|
|
- run: echo "${{ toJson(gitea) }}"
|
|
- run: echo "${{ toJson(job) }}" |