Skip to content

update version and changelog (#224) #400

update version and changelog (#224)

update version and changelog (#224) #400

Workflow file for this run

name: Compare index and readme
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Test files
run: |
DIFF=$(diff README.md docs/index.md)
if [ "$DIFF" != "" ]; then
exit 1
else
exit 0
fi