Skip to content

Upgrade pre commit hook #45

Upgrade pre commit hook

Upgrade pre commit hook #45

Workflow file for this run

name: tests
on:
push:
branches:
- '*'
- '!main'
jobs:
windows:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Run Tests
run: |
echo "Building image to test"
./build-and-test.sh Dockerfile-py3-windows
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Run Tests
run: |
echo "Building image to test"
./build-and-test.sh Dockerfile-py3-linux
linux-slim:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Run Tests
run: |
echo "Building image to test"
./build-and-test.sh Dockerfile-py3-linux-slim
osx:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Run Tests
run: |
echo "Building image to test"
./build-and-test.sh Dockerfile-py3-osx