Skip to content

WIP: Use hugepages in GH workflows #37

WIP: Use hugepages in GH workflows

WIP: Use hugepages in GH workflows #37

Workflow file for this run

name: Pull Request Code test
on:
pull_request:
types: [ assigned, opened, synchronize, reopened ]
paths-ignore:
- 'docs/**'
- '**/*.md'
jobs:
checks:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: '**/ci-requirements.txt'
- name: Install dependencies
run: |
sudo pip install -r hack/ci-requirements.txt
echo "$HOME/.local/bin" >> $GITHUB_PATH
- run: make ci-test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}