Skip to content

first commit

first commit #4

Workflow file for this run

name: Build
# Trigger when a pull request is received
on:
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ "3.10" ]
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Process the CRC32 of the images
run: |
set -e
python process_crc32.py
shell: bash