-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d35ebb
commit a1c3eb5
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,6 @@ jobs: | |
environment: | ||
name: github-pages | ||
url: https://root-11.github.io/tablite/ | ||
# url: https://Jetman80.github.io/tablite/ | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
|
@@ -46,8 +45,19 @@ jobs: | |
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
cache: pip | ||
cache-dependency-path: requirements_mkdocs.txt | ||
cache-dependency-path: | | ||
requirements.txt | ||
requirements_mkdocs.txt | ||
- name: Install Nim Lang | ||
uses: jiro4989/setup-nim-action@v1 | ||
with: | ||
nim-version: "2.0.0" | ||
- name: Nimble Install dependencies | ||
run: | | ||
nimble -y refresh | ||
nimble -y install nimpy argparse | ||
- name: Install PIPs | ||
run: python -m pip install -r requirements.txt | ||
run: python -m pip install -r requirements_mkdocs.txt | ||
- name: Show Python version and PIPs | ||
run: | | ||
|
@@ -57,6 +67,7 @@ jobs: | |
uses: allenevans/[email protected] | ||
with: | ||
USE_NIMPORTER: 'false' | ||
PYTHONPATH: '.:tablite' | ||
- name: Configure Git user | ||
run: | | ||
git config --local user.email "github-actions[bot]@users.noreply.github.com" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters