diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index de1f4b04..3652599b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,8 +13,16 @@ jobs: with: python-version: 3.8 + - name: Setup Golang + uses: actions/setup-go@v3 + with: + go-version: '>=1.17.0' + - name: Install dependencies run: | + # Get dependencies for autogen.sh script + go install github.com/mingrammer/round@latest + apt-get install inkscape python -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Build diff --git a/requirements.txt b/requirements.txt index 01e18d1d..f6cc18cd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ mkdocs==1.3.0 mkdocs-material==8.3.9 -mkdocs-material-extensions==1.0.3 \ No newline at end of file +mkdocs-material-extensions==1.0.3 +black==22.10.0 \ No newline at end of file