Add functional testing for bundles #1
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: Functional Testing | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
functional: | |
name: Run functional tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install LXD | |
run: | | |
set -e -u -x | |
sudo snap install lxd | |
sudo lxd init --auto | |
sudo snap install juju --channel 2.9 --classic | |
juju bootstrap localhost controller |