Skip to content

Commit

Permalink
Merge pull request #51 from matsui528/ci
Browse files Browse the repository at this point in the history
Updated the actions
  • Loading branch information
matsui528 authored Oct 26, 2023
2 parents c92c9a1 + efe6060 commit 42e31f3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
# https://github.blog/2019-08-08-github-actions-now-supports-ci-cd/
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10']
# https://stackoverflow.com/questions/57810623/how-to-select-the-c-c-compiler-used-for-a-github-actions-job:
compiler: [gcc, clang, cl]
exclude:
Expand All @@ -28,9 +28,9 @@ jobs:
- os: windows-latest
compiler: gcc
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand All @@ -47,3 +47,5 @@ jobs:
CC: ${{ matrix.compiler }}
run: |
make test

0 comments on commit 42e31f3

Please sign in to comment.