Bump golang from 1.21.4 to 1.21.5 #110
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
# SPDX-License-Identifier: Apache-2.0 | |
# Copyright 2023 Canonical Ltd. | |
name: Python Lint and Test | |
on: [push, pull_request] | |
jobs: | |
route-control-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Create virtual environment | |
run: python -m venv venv | |
- name: Install dependencies | |
run: | | |
source ./venv/bin/activate | |
pip install -r requirements.txt | |
- name: Run tests | |
run: | | |
source ./venv/bin/activate | |
python -m unittest ./conf/test_route_control.py |