Skip to content

Commit

Permalink
Re-add formatting CI check which was accidentally removed (#60)
Browse files Browse the repository at this point in the history
* Re-add formatting which was accidentally removed

* Whoops, indenting was already correct

* Try even simpler case
  • Loading branch information
jacobdeichert authored Apr 26, 2020
1 parent 1e99e5c commit b6248f6
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,17 @@ jobs:
- name: Make mask available globally (windows)
run: copy ./target/debug/mask.exe ~/.cargo/bin/
if: matrix.platform == 'windows-latest'
- name: Make mask available globally (linux)
- name: Make mask available globally (linux / mac)
run: cp ./target/debug/mask ~/.cargo/bin
if: matrix.platform == 'ubuntu-latest'
- name: Make mask available globally (mac)
run: cp ./target/debug/mask ~/.cargo/bin
if: matrix.platform == 'macos-latest'
if: matrix.platform != 'windows-latest'
- name: Run tests
run: cargo test --frozen


format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@master
- name: Verify formatting is correct
run: cargo fmt --all -- --check

0 comments on commit b6248f6

Please sign in to comment.