Add pyproject.toml
, requirements.txt
and tox.ini
#32
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: Tests | |
on: | |
- push | |
- pull_request | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v4 | |
- name: Lint shell files | |
uses: ludeeus/action-shellcheck@master | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip tox | |
- name: Lint Python files | |
run: | | |
tox run -e lint | |
- name: Typecheck Python files | |
run: | | |
tox run -e check | |
tests: | |
name: Tests | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.10", "3.11", "3.12"] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
set -x | |
sudo apt-get autopurge moby-containerd docker uidmap -y | |
sudo ip link delete docker0 | |
sudo nft flush ruleset | |
sudo snap refresh lxd | |
sudo adduser "$USER" lxd | |
sudo lxd init --auto | |
pip install --upgrade pip tox codecov | |
- name: Coverage | |
run: | | |
env | |
pwd | |
ls -l | |
ls -l pylxd/ || true | |
tox run -e coverage | |
codecov | |
- name: Integration | |
run: | | |
sudo -g lxd integration/run-integration-tests | |
publish: | |
name: Publish | |
runs-on: ubuntu-22.04 | |
if: startsWith(github.event.ref, 'refs/tags') | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: Release ${{ github.ref }} | |
generateReleaseNotes: true |