Skip to content

Allow specifying the encoding of the VBA source code. Replace invalid sequences instead of failing. #23

Allow specifying the encoding of the VBA source code. Replace invalid sequences instead of failing.

Allow specifying the encoding of the VBA source code. Replace invalid sequences instead of failing. #23

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
timeout-minutes: 120
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
timeout-minutes: 10
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
timeout-minutes: 10
- name: Install dependencies
run: |
python -m pip install -c ci-constraints.txt -r test-requirements.txt .
timeout-minutes: 10
- name: Test
run: |
python -m unittest
timeout-minutes: 60