diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 26366fa..9fad033 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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: |