Skip to content

Commit

Permalink
fix testing quine on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Nov 30, 2023
1 parent 7ce1298 commit 747623f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install misspell
run: |
curl -L -o ./install-misspell.sh https://git.io/misspell
Expand All @@ -19,14 +19,14 @@ jobs:
quine:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: validate quine
ruby-version: '3.2'
- 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
diff -u aa.rb ab.rb

0 comments on commit 747623f

Please sign in to comment.