· 3 min read

4 Multiplayer Games 🎮 on Github Profiles (README.md)

Is a markdown file enough to play games? Maybe... with GitHub Actions!

Is a markdown file enough to play games? Maybe... with GitHub Actions!

You can play online multiplayer games on Github profiles! 🎮

Setting up a profile on GitHub is easy, you just need to create a repository with your username and add a README.md file to it. This file will be displayed on your profile page and you can add anything you want to it, including games!

Now you’re maybe wondering how to play games on a text file, right? In this article we’re gonna see 4 different games and the first one is 100% powered by the markdown file, at the cost of being single-player only.

The other three games, with a little bit of magic, are multiplayer games!

I recorded a video where I play all 4 of them and I try to explain how they work, you can watch it here:

Game 1: Single-player Tic-Tac-Toe

Single-player Tic-Tac-Toe

Play the game: https://github.com/kylepls

This game is a Tic-Tac-Toe game that you can play by clicking on the cells of the table. Each cell anchor leads to a new table after the computer’s move.

Can you win against the computer? Unfortunately in this game with no errors it’s always gonna end in a draw so… you either lose or draw 😅

Language: Markdown

Game 2: Multiplayer Tic-Tac-Toe

Multiplayer Tic-Tac-Toe

Play the game: https://github.com/DoubleGremlin181

Here’s a version of Tic-Tac-Toe where you can play against someone else. However… there’s a catch!

You cannot decide for yourself the next move, but you can vote. Each click on a cell increments a counter and after an hour the cell that has the most votes will be the next move.

The profile is updated with a GitHub Action having a cron as a trigger.

Language: Python

Game 3: Multiplayer Chess

Multiplayer Chess

Play the game: https://github.com/marcizhu

Now we enter in the realm of the games where you can have a direct impact. Right below the board you can see the list of allowed moves and you can select one. Clicking on a link opens a new prefilled issue where you can just hit “create” to submit your move.

Here a GitHub Action that gets triggered on new issues will read the title and perform the move.

Language: Python

Side note, I think the original is on timburgan’s profile, written in Ruby, but it not working anymore.

Game 4: Multiplayer Connect4

Multiplayer Connect4

Play the game: https://github.com/JonathanGin52

This works similarly to chess, right below the board you can cast your next move which will be performed by a GitHub Action reading issue titles.

If you don’t want to wait for someone else to move, you can also play against the computer by requesting a move to the “Connect4Bot” bot.

Language: Ruby

Game 5 ???

Do you know any other profiles with games on them? Let me know in the comments!

About the author
Leonardo

Hello! My name is Leonardo and as you might have noticed, I like to talk about Web Development and Open Source!

I use GitHub every day and my favourite editor is Visual Studio Code... this might influence a little bit my conent! :D

If you like what I do, you should have a look at my YouTube Channel!

You might also like
Back to Blog