Skip to content

added search and deletion in skip list class #46

added search and deletion in skip list class

added search and deletion in skip list class #46

name: Awesome CI Workflow
on: [push, pull_request]
permissions:
contents: write
jobs:
MainSequence:
name: Code Formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
- name: requirements
run: |
sudo apt-get -qq update
sudo apt-get -qq install clang-tidy clang-format
# checks are passing with less errors when used with this version.
# The default installs v6.0 which did not work out well in my tests
- name: Setup Git Specs
run: |
git config --global user.name github-actions[bot]
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
#- name: Configure for static lint checks
# compiling first gives clang-tidy access to all the header files and settings used to compile the programs.
# This will check for macros, if any, on linux and not for Windows. But the use of portability checks should
# be able to catch any errors for other platforms.
#run: cmake -B build -S . -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
#- name: Commit and push changes
# run: |
# git diff DIRECTORY.md
# git commit -am "clang-format and clang-tidy fixes for ${GITHUB_SHA::8}" || true
# git push origin HEAD:$GITHUB_REF || true