Skip to content

Commit

Permalink
Add python CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RealHinome authored Aug 24, 2024
1 parent db6a12d commit 6896341
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: news/machine_learning

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
working-directory: ./machine_learning
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install .
#- name: Test
# Add test later.

0 comments on commit 6896341

Please sign in to comment.