Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/firstaction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ on:
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
env: name = 'Shyamala'
env:
name: 'Shyamala'
jobs:
build:
# The type of runner that the job will run on
Expand All @@ -33,6 +34,7 @@ jobs:
pull_request_only:
# The type of runner that the job will run on
runs-on: ubuntu-latest
if: github.event_actions == 'pull_request'
needs: build
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
2 changes: 1 addition & 1 deletion tictactoe.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
elif (p1key == 'O'):
p2key = 'X'
else:
print 'Invalid Input! Please enter X or O, Player1\n'
print 'Invalid Input! Please enter X or O, Player1!!!!!!\n'

#dic = { '1' : 'one', '2': 'two', '3' : 'three', '4' : 'four', '5' : 'five', '6' : 'six', '7' : 'seven', '8' : 'eight', '9' : 'nine' }

Expand Down