Update and rename blank.yml to test.yml

This commit is contained in:
nora 2021-12-07 20:38:24 +01:00 committed by GitHub
parent baf68e94e9
commit aa41fa4535
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,23 @@
# This is a basic workflow to help you get started with Actions
name: testing out
on:
push:
branches: [ main ]
jobs:
job1:
outputs:
uwu: uwu
runs-on: ubuntu-latest
steps:
- name: Run a one-line script
run: echo Ran job1
job2:
needs: [job1]
runs-on: ubuntu-latest
steps:
- name: Echo other output
run: echo ${{ needs.job1.outputs.uwuw }}