From f3d76c93367ae5b535e6a1c066c1d3267fb25bc3 Mon Sep 17 00:00:00 2001 From: KD Date: Sat, 1 Feb 2025 21:50:18 -0500 Subject: [PATCH 1/3] Create rust-ubuntu-latest.yml --- .github/workflows/rust-ubuntu-latest.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust-ubuntu-latest.yml diff --git a/.github/workflows/rust-ubuntu-latest.yml b/.github/workflows/rust-ubuntu-latest.yml new file mode 100644 index 0000000..000bb2c --- /dev/null +++ b/.github/workflows/rust-ubuntu-latest.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose -- 2.47.3 From 91e868d605ebe9bf85c9ac383952483fe3e2557d Mon Sep 17 00:00:00 2001 From: KD Date: Sat, 1 Feb 2025 21:52:35 -0500 Subject: [PATCH 2/3] Create rust-macos-latest --- .github/workflows/rust-macos-latest | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust-macos-latest diff --git a/.github/workflows/rust-macos-latest b/.github/workflows/rust-macos-latest new file mode 100644 index 0000000..16ea974 --- /dev/null +++ b/.github/workflows/rust-macos-latest @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose -- 2.47.3 From 13314ed8968f6b71ed37b9d044f53a9cc9d4487a Mon Sep 17 00:00:00 2001 From: KD Date: Sat, 1 Feb 2025 21:52:54 -0500 Subject: [PATCH 3/3] Delete .github/workflows/rust.yml --- .github/workflows/rust.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml deleted file mode 100644 index 2bef732..0000000 --- a/.github/workflows/rust.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Rust - -on: - push: - branches: [ "rust-lg" ] - pull_request: - branches: [ "rust-lg" ] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Build - run: cargo build --verbose - - name: Run tests - run: cargo test --verbose - -- 2.47.3