-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying github actions to check for different OS installations
- Loading branch information
1 parent
88a0510
commit e435ee9
Showing
1 changed file
with
30 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Use Setup-Miniconda From Marketplace | ||
on: [push] | ||
|
||
jobs: | ||
miniconda: | ||
name: Miniconda ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: ["ubuntu-latest", "windows-latest", "macos-latest"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
activate-environment: test | ||
environment-file: environment.yml | ||
python-version: 3.11 | ||
auto-activate-base: false | ||
- shell: bash -l {0} | ||
run: | | ||
conda info | ||
conda list | ||
conda install -c conda-forge compilers git pip cmake scikit-build spglib=2.1.0 pybind11=2.11.1 | ||
pip install . | ||
- name: Lint | ||
shell: bash -l {0} | ||
run: | | ||
conda install flake8 | ||
python -m flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
python -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics |