Skip to content

Fixed: Added filename quote escaping to prevent 400 error from API du… #12

Fixed: Added filename quote escaping to prevent 400 error from API du…

Fixed: Added filename quote escaping to prevent 400 error from API du… #12

Workflow file for this run

on:
- push
jobs:
test_python:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
name: Python ${{ matrix.python-version }} test
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: build
run: make -C python
- name: test
run: make -C python test
test_golang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: build
run: make -C go
- name: test
run: make -C go test