Skip to content

Bump rubocop from 1.66.0 to 1.66.1 in /tictactoe_ruby in the bundler-minor group #187

Bump rubocop from 1.66.0 to 1.66.1 in /tictactoe_ruby in the bundler-minor group

Bump rubocop from 1.66.0 to 1.66.1 in /tictactoe_ruby in the bundler-minor group #187

Workflow file for this run

# This workflow will run stuff on the basic version of tictactoe
name: Basic
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./tictactoe_basic
steps:
- uses: actions/checkout@v4
- name: Install fbc
run: |
sudo apt-get install libtinfo5
wget -O FreeBASIC-1.10.1-linux-x86_64.tar.gz 'http://downloads.sourceforge.net/fbc/FreeBASIC-1.10.1-linux-x86_64.tar.gz?download'
ls
tar xzf FreeBASIC-1.10.1-linux-x86_64.tar.gz
cd FreeBASIC-1.10.1-linux-x86_64
sudo ./install.sh -i
fbc --version
- name: Compile
run: fbc tictactoe_basic.bas
- name: Run
run: ./tictactoe_basic 4 4