Skip to content

Changed services page to correct company name #7

Changed services page to correct company name

Changed services page to correct company name #7

Workflow file for this run

name: Check for String
on: [push, pull_request]
jobs:
check_string:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Check for Deepl string
run: |
if grep -R "Deepl" . ; then
echo "String 'Deepl' found"
exit 1
else
echo "String 'Deepl' not found"
fi