initial commit

This commit is contained in:
Gleb Koval 2023-12-31 12:37:14 +06:00
commit a858624fc8
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
2 changed files with 29 additions and 0 deletions

26
.github/workflows/test-workflow.yaml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Test Workflow
on:
push:
branches:
- main
jobs:
test-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache Data
id: cache-data
uses: actions/cache@v3
with:
path: data.txt
key: ${{ runner.os }}-data
- name: Generate Data
if: steps.cache-data.outputs.cache-hit != 'true'
run: |
echo Doing things!
echo Hello World! > data.txt
- name: Use Data
run: cat data.txt

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Test repository for Gitea Actions
See [kovalhome#17](https://git.koval.net/cyclane/kovalhome/issues/17).