Skip to content

chore(deps): bump the git group across 1 directory with 2 updates #80

chore(deps): bump the git group across 1 directory with 2 updates

chore(deps): bump the git group across 1 directory with 2 updates #80

Workflow file for this run

name: surf
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
debug:
strategy:
matrix:
os:
- ubuntu-22.04
# - windows-latest
# - macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
with:
submodules: true
fetch-depth: 0
- name: Setup Python
uses: actions/[email protected]
with:
python-version: '3.10'
- name: Install Pip dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Compile and test
run: |
sudo apt install libcurl4-openssl-dev
make debug
make test