17 lines
331 B
YAML
17 lines
331 B
YAML
name: Testing pipes
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repo code
|
|
uses: actions/checkout@v3
|
|
- run: echo "Testing testing"
|
|
- run: cat ./README.md
|
|
- run: cat /etc/os-release
|
|
- run: echo "Workdir: $(pwd)"
|