Skip to content

Commit

Permalink
[WIP] Migrate make test and make reprotest to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eloquence committed Apr 22, 2024
1 parent c745098 commit f35c89e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 74 deletions.
69 changes: 0 additions & 69 deletions .circleci/config.yml

This file was deleted.

21 changes: 16 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,22 @@ jobs:
runs-on: ubuntu-latest
container: debian:bullseye
steps:
- name: Bootstrap Debian system package dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make sudo git git-lfs ca-certificates
- uses: actions/checkout@v4
- name: Install dependencies
with:
lfs: true
- name: Install additional packages and Python dependencies
run: |
# Installs Python & bootstrap wheels, and initializes a virtualenv at .venv
make install-deps
./.venv/bin/pip install -r test-requirements.txt
- name: Run linters
run: |
apt-get update && apt-get install --yes --no-install-recommends make python3-pip
pip install -r test-requirements.txt
- name: Run lint checks
. ./.venv/bin/activate
make lint
- name: Run tests except reprotest
run: |
make lint
. ./.venv/bin/activate
make test

0 comments on commit f35c89e

Please sign in to comment.