Add workflow to test action automatically
Some checks failed
/ Tests that the action works as expected (push) Failing after 13s
Some checks failed
/ Tests that the action works as expected (push) Failing after 13s
This commit is contained in:
parent
867556c33d
commit
1414306012
30
.github/workflows/test.yaml
vendored
Normal file
30
.github/workflows/test.yaml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
test-action:
|
||||
runs-on: nix
|
||||
name: Tests that the action works as expected
|
||||
steps:
|
||||
- name: Create sample file
|
||||
run: echo "Hello, world!" > test.txt
|
||||
- name: Upload to lgoad
|
||||
id: upload
|
||||
uses: https://git.colon-three.com/kodi/lgoad-upload-action@main
|
||||
with:
|
||||
file: test.txt
|
||||
token: ${{ secrets.LGOAD_TOKEN }}
|
||||
custom-machine-name: 'github-action-test-machine'
|
||||
content-type: 'text/plain'
|
||||
custom-name: 'test.txt'
|
||||
use-salt: 'true'
|
||||
- name: Print the URL
|
||||
run: echo "The URL is ${{ steps.upload.outputs.url }}"
|
||||
- name: Check that the file is correctly uploaded
|
||||
run: |
|
||||
curl -s -o test-uploaded.txt ${{ steps.upload.outputs.url }}
|
||||
diff test.txt test-uploaded.txt
|
||||
rm test.txt
|
||||
|
Loading…
Reference in New Issue
Block a user