This repository was archived by the owner on Oct 1, 2025. It is now read-only.
build(deps): bump anyhow from 1.0.96 to 1.0.97 #3
Workflow file for this run
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: Build/Test oxidizr | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Build/Test oxidizr | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install nix | |
| uses: DeterminateSystems/nix-installer-action@main | |
| - name: Build oxidizr | |
| run: | | |
| nix build .#oxidizr | |
| - name: Run tests | |
| run: | | |
| nix develop --command cargo test -- --show-output | |
| snap: | |
| name: Build snap | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-24.04 | |
| - os: ubuntu-24.04-arm | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup LXD | |
| uses: canonical/[email protected] | |
| - name: Setup Snapcraft | |
| run: sudo snap install --classic snapcraft | |
| - name: Build snap | |
| run: snapcraft --verbose |