Skip to content

fix: try a different approach for ci #11

fix: try a different approach for ci

fix: try a different approach for ci #11

Workflow file for this run

name: Main Branch
on:
push:
branches:
- main
jobs:
build-and-upload:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
target: i686-unknown-linux-gnu
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-gnu
- os: windows-latest
target: i686-pc-windows-gnu
- os: windows-latest
target: aarch64-pc-windows-gnu
- os: macos-latest
target: x86_64-apple-darwin
- os: macos-latest
target: aarch64-apple-darwin
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Install dependencies
if: matrix.os == 'macos-latest'
run: brew install openssl
- name: Build
run: cargo build --release --target ${{ matrix.target }}
- name: Check i18n
shell: bash
run: scripts/find-missing-i18n.sh