Skip to content

Commit

Permalink
Migrate to GitHub Actions from CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
leee committed Dec 8, 2023
1 parent 78c5ea9 commit 4ce4720
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .circleci/config.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: CI

on: [push, pull_request]

jobs:
verify:
runs-on: ubuntu-latest
container: debian:bullseye
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make openssl
- name: Verify ruleset signature
run: |
make verify
lint:
runs-on: ubuntu-latest
container: debian:bullseye
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make python3 python3-pip
pip install poetry==1.6.1
poetry install --no-ansi
- name: Check code formatting via black
run: |
make check-black

0 comments on commit 4ce4720

Please sign in to comment.