Merge pull request #3 from BRAVO68WEB/feat/password-lock #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Build | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Environment | |
uses: ./.github/actions/setup | |
- name: Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.17.0' | |
- name: Installing Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
# - name: Building with Cargo | |
# uses: actions-rs/cargo@v1 | |
# with: | |
# command: build | |
# args: --release --manifest-path Cargo.toml | |
# use-cross: true | |
- name: Build packages | |
shell: bash | |
run: pnpm build |