Skip to content

if the alias already exist don't write it again into the .bashrc file #13

if the alias already exist don't write it again into the .bashrc file

if the alias already exist don't write it again into the .bashrc file #13

Workflow file for this run

name: Python application test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.14, 3.11.9, 3.12.4]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Test with unittest
run: |
pytest tests/test.py