X-Git-Url: https://code.octet-stream.net/hashgood/blobdiff_plain/fe58ffda1c19d5c4d5b7ff3b42e0de7a6b7136ff..585a245dd6e90efc545dbd68f928da9e03086cb9:/.github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml deleted file mode 100644 index 26ecad9..0000000 --- a/.github/workflows/rust.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Rust - -on: [push] - -jobs: - build: - - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - include: - - os: windows-latest - features: "--features paste" - - os: macos-latest - features: "--features paste" - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v1 - - name: Build - run: cargo build ${{ matrix.features || '' }} - - name: Run tests - run: cargo test ${{ matrix.features || '' }}