README: remove FreeBSD and LOONGARCH #7
This file contains hidden or 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: Arm64 MacOS Zig | |
| on: [push, pull_request] | |
| jobs: | |
| run: | |
| strategy: | |
| matrix: | |
| target: | |
| - aarch64-macos-none | |
| runs-on: macos-latest # Using M1 processors | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: mlugg/setup-zig@v2 | |
| with: | |
| version: latest | |
| - name: Build | |
| run: zig build -Dtarget=${{ matrix.target }} | |
| - name: Run list_cpu_features | |
| run: ./zig-out/bin/list_cpu_features --json |