diff options
author | Nick Gerace <nickagerace@gmail.com> | 2021-01-27 02:18:09 +0000 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2021-01-26 21:35:32 -0500 |
commit | f19ca908211a42610018b5a9acbfa28fb62fb471 (patch) | |
tree | 46e95863eb0864598324e5426c0fa097b3cd8ef4 /.github/workflows | |
parent | 09c88901cbc9d4507aad348391631106d41141a9 (diff) | |
download | gfold-f19ca908211a42610018b5a9acbfa28fb62fb471.zip |
Update to 0.8.4
Update to 0.8.4 and change all relevant files with the new semver.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/merge.yml | 106 |
1 files changed, 53 insertions, 53 deletions
diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 43225bf..7c0bded 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -1,53 +1,53 @@ -on: [push]
-name: merge
-jobs:
- pre-build:
- name: Pre-Build
- runs-on: ubuntu-latest
- steps:
- - name: Checkout sources
- uses: actions/checkout@v2
- - name: Install stable toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- components: rustfmt, clippy
- - name: cargo check
- uses: actions-rs/cargo@v1
- with:
- command: check
- - name: cargo fmt
- uses: actions-rs/cargo@v1
- with:
- command: fmt
- args: --all -- --check
- - name: cargo clippy
- uses: actions-rs/cargo@v1
- with:
- command: clippy
- args: -- -D warnings
- - name: cargo test
- uses: actions-rs/cargo@v1
- with:
- command: test
- build:
- name: Build
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest,windows-latest,macos-latest]
- steps:
- - name: Checkout sources
- uses: actions/checkout@v2
- - name: Install stable toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- - name: Run cargo build
- uses: actions-rs/cargo@v1
- with:
- command: build
+on: [push] +name: merge +jobs: + pre-build: + name: Pre-Build + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v2 + - name: Install stable toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + components: rustfmt, clippy + - name: cargo check + uses: actions-rs/cargo@v1 + with: + command: check + - name: cargo fmt + uses: actions-rs/cargo@v1 + with: + command: fmt + args: --all -- --check + - name: cargo clippy + uses: actions-rs/cargo@v1 + with: + command: clippy + args: -- -D warnings + - name: cargo test + uses: actions-rs/cargo@v1 + with: + command: test + build: + name: Build + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest,windows-latest,macos-latest] + steps: + - name: Checkout sources + uses: actions/checkout@v2 + - name: Install stable toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - name: Run cargo build + uses: actions-rs/cargo@v1 + with: + command: build |