Skip to content

add note to Shiba

add note to Shiba #61

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install misspell
run: |
curl -L -o ./install-misspell.sh https://git.io/misspell
sh ./install-misspell.sh -b .
- run: ./misspell -error README.md
- name: Check workflow files
run: |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
./actionlint -color
shell: bash
quine:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: validate quine
run: |
cd ./q
ruby gen_gen_aa.rb > gen_aa.rb
ruby gen_aa.rb > aa.rb
ruby aa.rb > ab.rb
diff -u aa.rb aa.rb