Skip to content

Try to fix mojo CI #469

Try to fix mojo CI

Try to fix mojo CI #469

Workflow file for this run

# This workflow will compile the assembly version of tictactoe
name: Assembly
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./tictactoe_assembly
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y nasm
- name: Build
run: |
make build
- name: Run
run: |
./tictactoe < input1.txt
./tictactoe < input2.txt