Update runner.yml #6
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
name: Runner | |
on: | |
push: | |
paths-ignore: | |
- '*.md' | |
branches: [ "main" ] | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_run: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
- name: Setup Golang | |
uses: actions/setup-go@main | |
with: | |
go-version: '1.21.x' | |
- name: Setup Java | |
uses: actions/setup-java@main | |
with: | |
distribution: 'oracle' | |
java-version: '21' | |
- name: Setup Zig | |
uses: mlugg/setup-zig@v1 | |
- name: Run Golang | |
run: | | |
cd taylor.go | |
go run main.go | |
- name: Run Java | |
run: | | |
cd taylor.java | |
javac main.java | |
java main | |
- name: Run Rust | |
run: | | |
cd taylor.rs | |
cargo run | |
- name: Run Zig | |
run: | | |
cd taylor.zig | |
zig run main.zig |