add CC statement and about-me part #28
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
name: CI Tests | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
basic_checks: | |
name: Basic environment and code checks / ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
environment-file: environment.yml | |
- name: Python info | |
run: | | |
which python | |
python --version | |
- name: Show conda info and list | |
run: | | |
conda info | |
conda list | |
- name: Show pip list | |
run: | | |
pip list |