diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 1346b18..8efeaf2 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -11,8 +11,10 @@ jobs: matrix: target: - x86_64-unknown-linux-gnu - - x86_64-unknown-netbsd - - armv7-unknown-linux-gnueabihf + - x86_64-unknown-freebsd + - aarch64-linux-android + - x86_64-pc-windows-gnu + - x86_64-apple-darwin include: - os: ubuntu-latest @@ -22,17 +24,29 @@ jobs: strip: true - os: ubuntu-latest - name: NetBSD - target: x86_64-unknown-netbsd + name: FreeBSD + target: x86_64-unknown-freebsd cross: true strip: true - os: ubuntu-latest - name: Linux armv7 - target: armv7-unknown-linux-gnueabihf + name: Android + target: aarch64-linux-android cross: true strip: true + - os: windows-latest + name: Windows x86_64 + target: x86_64-pc-windows-gnu + cross: false + strip: true + + - os: macos-latest + name: macOS x86_64 + target: x86_64-apple-darwin + cross: false + strip: true + steps: - name: Checkout uses: actions/checkout@v2