Skip to content

Commit

Permalink
Add ci.yaml github action
Browse files Browse the repository at this point in the history
  • Loading branch information
theferrit32 committed Nov 4, 2024
1 parent 24c6405 commit de8db69
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: 'x64'

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install -r .requirements.txt --pre
- name: Build jsonschema
run: |
cd schema
make all

0 comments on commit de8db69

Please sign in to comment.