Skip to content

Commit

Permalink
Try to run Io.
Browse files Browse the repository at this point in the history
  • Loading branch information
codecop committed Jan 22, 2025
1 parent c6d964e commit 900f1ac
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/io.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test Io

on:
push:
paths:
- 'io/**'
- '.github/workflows/io.yml'
pull_request:
paths:
- 'io/**'
- '.github/workflows/io.yml'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3

- name: Set up Io
run: |
wget -q http://iobin.suspended-chord.info/linux/iobin-linux-x64-deb-current.zip
unzip -qq iobin-linux-x64-deb-current.zip
sudo dpkg -i IoLanguage-2013.11.04-Linux-x64.deb
sudo ldconfig
io --version
- name: Test
working-directory: io
run: io ./tests/correctness/run.io

0 comments on commit 900f1ac

Please sign in to comment.