Skip to content

Commit

Permalink
initial test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
janickr committed Jul 22, 2024
1 parent 987464d commit 22854f9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
python-version: [ "3.9" ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -40,10 +40,12 @@ jobs:
- name: Install module
run: |
pip install -e .
which protoc-gen-myprotosql
- name: Install protoc
uses: arduino/setup-protoc@v3
- name: Compile proto files
run: |
mkdir build
protoc --proto_path=proto --python_out=build ./proto/*
# - name: Create test_db and user
# run: |
Expand Down

0 comments on commit 22854f9

Please sign in to comment.