-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Separate data.lock per profile and fix small issues (#8)
- Loading branch information
Showing
11 changed files
with
734 additions
and
340 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 |
---|---|---|
|
@@ -3,11 +3,46 @@ name: build | |
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
check-branch: | ||
runs-on: ubuntu-latest | ||
|
||
timeout-minutes: 2 | ||
concurrency: | ||
group: ci-check-branch-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Check if the PR's branch is updated | ||
uses: osl-incubator/[email protected] | ||
with: | ||
remote_branch: origin/main | ||
pr_sha: ${{ github.event.pull_request.head.sha }} | ||
|
||
build: | ||
needs: check-branch | ||
strategy: | ||
matrix: | ||
python_version: | ||
- "3.8.1" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
|
||
os: | ||
- 'ubuntu' | ||
- 'macos' | ||
# - 'windows' # note: makim doesn't have support for windows yet | ||
|
||
runs-on: ${{ matrix.os }}-latest | ||
|
||
timeout-minutes: 10 | ||
concurrency: | ||
group: ci-${{ github.ref }} | ||
group: ci-tests-${{ matrix.os }}-${{ matrix.python_version }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
defaults: | ||
|
@@ -16,16 +51,39 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
|
||
- name: Install MacOS extra tools and add extra setup | ||
if: ${{ matrix.os == 'macos' }} | ||
run: | | ||
sudo mkdir -p /tmp | ||
sudo chmod 777 /tmp | ||
brew install gnu-sed | ||
echo 'export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"' >> ~/.bashrc | ||
echo 'export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"' >> ~/.bash_profile | ||
- name: Prepare conda environment (windows) | ||
if: ${{ matrix.os == 'windows' }} | ||
run: | | ||
$env:Path += ";C:\Program Files\Git\usr\bin" | ||
sed -i s/python\ 3\.8/python\ ${{ matrix.python_version }}/ conda/dev.yaml | ||
cat conda/dev.yaml | ||
- name: Prepare conda environment | ||
if: ${{ matrix.os != 'windows' }} | ||
run: | | ||
sed -i s/python\ 3\.8\.1/python\ ${{ matrix.python_version }}/ conda/dev.yaml | ||
cat conda/dev.yaml | ||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
miniconda-version: "latest" | ||
mamba-version: "1.*" | ||
environment-file: conda/dev.yaml | ||
channels: conda-forge,nodefaults | ||
channel-priority: true | ||
activate-environment: envers | ||
use-mamba: true | ||
miniforge-variant: Mambaforge | ||
auto-update-conda: true | ||
conda-solver: libmamba | ||
|
||
- name: Install dependencies | ||
run: | | ||
|
@@ -39,7 +97,40 @@ jobs: | |
run: | | ||
makim tests.smoke | ||
- name: Run style checks | ||
linter-and-docs: | ||
needs: check-branch | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
concurrency: | ||
group: ci-linter-docs-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
miniconda-version: "latest" | ||
environment-file: conda/dev.yaml | ||
channels: conda-forge,nodefaults | ||
activate-environment: envers | ||
auto-update-conda: true | ||
conda-solver: libmamba | ||
|
||
- name: Install dependencies | ||
run: | | ||
pre-commit install | ||
makim tests.linter | ||
poetry config virtualenvs.create false | ||
poetry install | ||
- name: Test documentation generation | ||
run: makim docs.build | ||
|
||
- name: Run style checks | ||
if: success() || failure() | ||
run: makim tests.linter |
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
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
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
Oops, something went wrong.