Skip to content

Delete go.sum

Delete go.sum #12

Workflow file for this run

name: My CI/CD Workflow

Check failure on line 1 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

Invalid `steps` value - steps should be list of `uses` or `run` items
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
# Your build steps here...
deploy:
runs-on: ubuntu-latest
steps:
# Your deploy steps here...
# Ignore running tests based on a specific condition
tests:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
steps:
name: Skip Tests
run: echo "Tests are skipped for this workflow run."
# Other jobs can go here...