Unpin redis #23
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
python-version: ["3.11", "3.10", "3.9", "3.8", "3.7"] | |
os: ["ubuntu-22.04"] | |
include: | |
- python-version: "3.6" | |
os: "ubuntu-20.04" | |
- python-version: "3.5" | |
os: "ubuntu-20.04" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Include ppa repository | |
run: sudo add-apt-repository ppa:deadsnakes/ppa | |
- name: Set up Python ${{ matrix.python-version }} | |
run: | | |
sudo apt-get install python${{ matrix.python-version }}-dev | |
sudo update-alternatives --install /usr/bin/python3 python3 `which python${{ matrix.python-version }}` 1 | |
sudo update-alternatives --install /usr/bin/python3-config python3-config `which python${{ matrix.python-version }}-config` 1 | |
- name: Build | |
run: make |