diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-05-12 22:22:46 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-05-12 22:22:46 -0700 |
commit | 9f760cefdee9dbc18e6294d78d139b629062fad7 (patch) | |
tree | 7a37cd97ee986538690b6360b43573b6fb6b2fa2 | |
parent | 5c77b675b5957d33de2e6c83481c55e9bbc32902 (diff) |
Setup python.
-rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85d9fed..f55dcb0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 + with: + python-version: 3.8 - name: Build and test env: CMAKE_OPTIONS: -DCMARK_SHARED=OFF @@ -22,6 +26,10 @@ jobs: steps: - uses: actions/checkout@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 + with: + python-version: 3.8 - name: Build and test env: CMAKE_OPTIONS: -DCMARK_SHARED=OFF @@ -36,6 +44,10 @@ jobs: steps: - uses: actions/checkout@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 + with: + python-version: 3.8 - name: Build and test run: | nmake test |