Skip to content

Commit

Permalink
minimal build/install project ci workflow
Browse files Browse the repository at this point in the history
For the server
  • Loading branch information
jacomago committed Apr 18, 2024
1 parent ca716d4 commit 6b9346d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

name: recceiver

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build-server:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install .

0 comments on commit 6b9346d

Please sign in to comment.