-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2ccad1e
commit 3bc7c3d
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Rust | ||
|
||
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, windows-latest, macos-latest] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- 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 Rust | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
|
||
- 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 |