Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

test "gh pr create" again #23

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 14 additions & 15 deletions .github/workflows/yapf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,22 @@ on:
pull_request:
branches:
- main

jobs:
yapf:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
runs-on: test-label
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
- uses: actions/checkout@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install yapf==0.32.0
pip install toml==0.10.2
- name: Running yapf
fetch-depth: 0
submodules: recursive

- name: hello
run: |
yapf --diff --recursive .
echo "hello world ... "
echo "and what will happen now?"
echo "i've been added as an outside collaborator"
echo "but only have read access ..."
echo "just joking ... i actually have write access"
echo "... i heard only certain workflow versions can run"

Loading