Skip to content

Commit 061bc98

Browse files
committed
Simplify actions more
1 parent 7d85935 commit 061bc98

File tree

2 files changed

+13
-21
lines changed

2 files changed

+13
-21
lines changed

.github/workflows/run_tests.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
restore-keys: |
3030
${{ runner.os }}-pip-
3131
32-
- uses: actions/cache@v4
33-
with:
34-
path: ~/voxelwise_tutorials_data/shortclips
35-
key: shortclips-dataset
32+
# - uses: actions/cache@v4
33+
# with:
34+
# path: ~/voxelwise_tutorials_data/shortclips
35+
# key: shortclips-dataset
3636

3737
- name: Install dependencies
3838
run: |
@@ -41,10 +41,10 @@ jobs:
4141
# install himalaya from source to get early testing
4242
pip install git+https://github.com/gallantlab/himalaya.git
4343
pip install -e ."[github]"
44-
# use neurodebian installer for travis
45-
bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh)
46-
sudo apt-get update -qq
47-
sudo apt-get install git-annex-standalone
44+
# # use neurodebian installer for travis
45+
# bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh)
46+
# sudo apt-get update -qq
47+
# sudo apt-get install git-annex-standalone
4848
4949
- name: Lint with flake8
5050
run: |
@@ -54,11 +54,11 @@ jobs:
5454
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
5555
flake8 . --count --exit-zero --ignore=E402,C901 --max-line-length=127 --statistics
5656
57-
- name: Config git-annex
58-
run: |
59-
# add some git config for git-annex
60-
git config --global user.email "[email protected]"
61-
git config --global user.name "Github Actions"
57+
# - name: Config git-annex
58+
# run: |
59+
# # add some git config for git-annex
60+
# git config --global user.email "[email protected]"
61+
# git config --global user.name "Github Actions"
6262

6363
- name: Test with pytest
6464
run: |

.github/workflows/run_tutorials.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,6 @@ jobs:
4646
sudo apt-get update -qq
4747
sudo apt-get install git-annex-standalone
4848
49-
- name: Lint with flake8
50-
run: |
51-
pip install -q flake8
52-
# stop the build if there are Python syntax errors or undefined names
53-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
54-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
55-
flake8 . --count --exit-zero --ignore=E402,C901 --max-line-length=127 --statistics
56-
5749
- name: Config git-annex
5850
run: |
5951
# add some git config for git-annex

0 commit comments

Comments
 (0)