Skip to content

Bump golang from 1.21.4 to 1.21.5 #110

Bump golang from 1.21.4 to 1.21.5

Bump golang from 1.21.4 to 1.21.5 #110

Workflow file for this run

# 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