Skip to content

Commit

Permalink
Point pipelines to the right master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
akopdev committed Apr 14, 2024
1 parent ab8c5e6 commit 1fdaac6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Verify

on:
push:
branches: [ "main" ]
branches: [ "master" ]
pull_request:
branches: [ "main" ]
branches: [ "master" ]

permissions:
contents: read
Expand All @@ -18,9 +18,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
uses: actions/setup-python@v1
with:
python-version: "3.10"
- name: Setup environment
Expand All @@ -31,6 +31,7 @@ jobs:
make install
- name: Lint
run: |
python -m pip install --upgrade pip
make lint
- name: Test
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v1
with:
python-version: '3.x'
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 1fdaac6

Please sign in to comment.