Skip to content

Commit

Permalink
Update GH actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-hilden committed Dec 2, 2021
1 parent 3624fc8 commit c04d44f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Mold adheres to `Semantic Versioning <https://semver.org>`_.
Unreleased
----------
- Update ``rtd_sphinx`` YAML file
- Update ``github actions`` CI

0.2.1 (2021-09-13)
------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
matrix:
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: ["3.6", "3.7", "3.8", "3.9"]
name: Pytest on {{ '${{matrix.python-version}}' }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python {{ '${{matrix.python-version}}' }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: {{ '${{matrix.python-version}}' }}
- name: Install package
Expand All @@ -33,14 +33,14 @@ jobs:
run: pytest

full-build:
name: Full 3.9 build
name: Full 3.10 build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.10"
- name: Install package
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit c04d44f

Please sign in to comment.