We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb7ffe1 commit df6cc71Copy full SHA for df6cc71
1 file changed
.github/workflows/source.yml
@@ -36,14 +36,18 @@ jobs:
36
runs-on: ubuntu-22.04
37
steps:
38
- uses: actions/checkout@v4
39
- - uses: s-weigand/setup-conda@v1.2.3
+ - uses: conda-incubator/setup-miniconda@v3
40
+ name: Setup conda
41
with:
- update-conda: true
42
- conda-channels: conda-forge
+ auto-update-conda: true
43
+ channels: conda-forge,defaults
44
+ channel-priority: true
45
- name: Install
46
run: conda install -c conda-forge doxygen=1.9.6
47
- name: Doxygen
- run: .github/workflows/source/buildDoxygen
48
+ run: |
49
+ source /usr/share/miniconda/bin/activate
50
+ .github/workflows/source/buildDoxygen
51
52
urls:
53
runs-on: ubuntu-latest
0 commit comments