Merge pull request #70 from rdxxer/main #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# .github/workflows/ubuntu.yml | |
# Wopslang Github CI (Action) | |
# | |
# 2023, Wops Team | |
# | |
name: CI - Ubuntu OS | |
on: | |
push: | |
branches: [main, lab] | |
pull_request: | |
branches: [main, lab] | |
permissions: read-all | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make | |
run: mkdir sample/lib; make CI-TEST-Wopslang; | |
Fizzbuzz: | |
needs: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make | |
run: mkdir sample/lib; make CI-TEST-Wopslang; mv Wopslang sample/; | |
- name: run | |
run: cd sample; ./Wopslang fizzbuzz.wops debug > out; | |
Hailstone_Sequence: | |
needs: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make | |
run: mkdir sample/lib; make CI-TEST-Wopslang; mv Wopslang sample/; | |
- name: run | |
run: cd sample; tree; ./Wopslang hailstone_sequence.wops debug > out; | |
Hello_Wopslang: | |
needs: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make | |
run: mkdir sample/lib; make CI-TEST-Wopslang; mv Wopslang sample/; | |
- name: run | |
run: cd sample; tree; ./Wopslang hello_wopslang.wops debug > out; | |
Multiline: | |
needs: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make | |
run: mkdir sample/lib; make CI-TEST-Wopslang; mv Wopslang sample/; | |
- name: run | |
run: cd sample; echo "1" > input; tree; ./Wopslang multiline.wops debug < input > out; |