Skip to content

Bump pycryptodome from 3.18.0 to 3.19.1 in /cli (#40) #16

Bump pycryptodome from 3.18.0 to 3.19.1 in /cli (#40)

Bump pycryptodome from 3.18.0 to 3.19.1 in /cli (#40) #16

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches: [main]
jobs:
prettier:
name: Prettier Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Run Prettier
id: prettier-run
uses: rutajdash/[email protected]
with:
config_path: ./.prettierrc
prettier_version: "3.1.1"
# This step only runs if prettier finds errors causing the previous step to fail
# This steps lists the files where errors were found
- name: Prettier Output
if: ${{ failure() }}
shell: bash
run: |
echo "The following files are not formatted:"
echo "${{steps.prettier-run.outputs.prettier_output}}"