Merge branch 'test-actions'
Some checks failed
Test checkout / test_checkout_no_actions (push) Failing after 5s
Create release from tag / create_release (push) Failing after 14m34s

This commit is contained in:
Álvaro González 2026-05-13 10:25:51 +02:00
commit d53a0ba76e
2 changed files with 22 additions and 2 deletions

21
.github/workflows/checkout.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: Test checkout
on:
push:
tags:
- 'test*'
jobs:
test_checkout_no_actions:
runs-on: ubuntu-latest
permissions:
contents: write # needed to create releases
steps:
- name: Environment Variables
run: pwd; env
- name: Checkout
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh repo clone $GITHUB_REPOSITORY . -- --depth 1
- name: List files
run: find $(pwd)

View file

@ -2,8 +2,7 @@ name: run-test-on-push
on:
push:
branches:
- master
# - feature/embed-http-server
- test
jobs:
run-script: