diff options
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | requirements-dev.txt | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b946eacd4..4f649ec64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v1 - name: install tools run: | - sudo pip3 install flake8==3.7.8 + sudo pip3 install -r requirements-dev.txt sudo apt-get install clang-format clang-tidy - name: update path run: echo "PATH=$PATH:/usr/lib/llvm-8/bin" >> $GITHUB_ENV diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 000000000..f933898d1 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,6 @@ +# These requirements are only needed for developers who want to run the test +# suite or flake8, not for end users. + +# Install with `pip3 install -r requirements-dev.txt` + +flake8==3.7.8 |