Skip to content

Skip password auth tests if not supported by LXD #108

Skip password auth tests if not supported by LXD

Skip password auth tests if not supported by LXD #108

Workflow file for this run

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 -e lint
- name: Typecheck Python files
run: |
tox -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@v5
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: |
tox -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