Skip to content

feat: unzip download file #277

feat: unzip download file

feat: unzip download file #277

name: default-pipeline
on:
pull_request:
types: [ opened, synchronize, reopened ]
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: (checkout) source code
uses: actions/checkout@v3
- name: (run) lint
uses: ./.github/actions/lint
with:
github-token: ${{ env.GITHUB_TOKEN }}
use-cache: true
test:
runs-on: ubuntu-latest
steps:
- name: (checkout) source code
uses: actions/checkout@v3
- name: (run) test
uses: ./.github/actions/test
with:
github-token: ${{ env.GITHUB_TOKEN }}
use-cache: true
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: (checkout) source code
uses: actions/checkout@v3
- name: (run) build
uses: ./.github/actions/build
with:
os: ${{ matrix.os }}
use-cache: true
github-token: ${{ env.GITHUB_TOKEN }}