fucking WORK

This commit is contained in:
Oskar Manhart
2024-09-18 17:56:49 +02:00
committed by GitHub
parent fd90dd837d
commit 2a70f7f3a2

View File

@@ -10,6 +10,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
if: ${{ github.event_name != 'pull_request' }}
- name: Checkout pull request
uses: actions/checkout@v3
if: ${{ github.event_name == 'pull_request' }}
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Python 3
uses: actions/setup-python@v4