Skip to content

Commit

Permalink
ASSET-9 Add CI workflow
Browse files Browse the repository at this point in the history
Signed-off-by: jormal <jormal@naver.com>
  • Loading branch information
jormal committed Jan 15, 2024
1 parent f296c55 commit 903b996
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches: [ main ]
pull_request:

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"

- name: Set up requirements
run: pip install -r requirements.txt

- name: Test
run: pytest
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
CairoSVG==2.7.1
pillow==10.2.0
pydantic==2.5.3
typing_extensions==4.9.0

0 comments on commit 903b996

Please sign in to comment.