Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cmp-test.yml #146

Merged
merged 11 commits into from
Jan 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions .github/workflows/cmp-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,19 @@ on:
branches: [main]

jobs:
core_base_build:
runs-on: ubuntu-latest
cmp_core_base_build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ 3.11, 3.12 ]
os: [ ubuntu-latest ]
steps:
- name: Checkout CMP code
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install flake8
run: |
pip install flake8
- name: Install black
run: |
pip install black
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
pip install -r requirements.txt
Expand Down Expand Up @@ -60,4 +58,3 @@ jobs:
name: coverage-report
path: |
coverage.xml

Loading