Skip to content

Commit

Permalink
CI Anaconda bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 authored Jul 10, 2023
1 parent 22dd8cd commit a70f9a2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/axi_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ on: [push]

jobs:

test:
name: Test
runs-on: ubuntu-20.04
test_and_document:
name: Test And Generate Documentation
runs-on: ubuntu-22.04
steps:

# This step checks out a copy of your repository.
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.11

- name: Install dependencies
run: |
Expand All @@ -45,7 +45,7 @@ jobs:
gen_release:
name: Generate Release
runs-on: ubuntu-20.04
needs: [test]
needs: [test_and_document]
if: startsWith(github.ref, 'refs/tags/')
steps:

Expand Down

0 comments on commit a70f9a2

Please sign in to comment.