diff options
author | 2021-05-15 21:55:35 -0700 | |
---|---|---|
committer | 2021-05-15 21:55:35 -0700 | |
commit | d725d26fe6e113eb4dd631f58fd2d16c40561cdb (patch) | |
tree | 2006c03293150a98cea85a030efb17b7e52687ea | |
parent | 9af4a8ef5fd331e8974d4f003c0a55f398654131 (diff) | |
download | notion-d725d26fe6e113eb4dd631f58fd2d16c40561cdb.tar.gz notion-d725d26fe6e113eb4dd631f58fd2d16c40561cdb.tar.zst notion-d725d26fe6e113eb4dd631f58fd2d16c40561cdb.zip |
chore: remove unneeded matrix build
-rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 458d340..b4059c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ on: jobs: static-analysis: - runs-on: macos-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install cargo components @@ -26,12 +26,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} build: - strategy: - matrix: - build: - - type: linux - os: ubuntu-latest - runs-on: ${{matrix.build.os}} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Build |