Updated CHANGELOG and README for TCP transport (cf. https://github.co… #105
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: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ^3.11 | |
id: python | |
- name: Install Python packages | |
run: pip install toml yapf | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Build | |
run: make build-all |