chore: bump nix from 0.27.1 to 0.28.0 #133
Workflow file for this run
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
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
name: Check PR | |
jobs: | |
conform: | |
name: Conformance | |
runs-on: ubuntu-latest | |
container: | |
image: golang:1 | |
options: --user 1001 # https://github.com/actions/runner/issues/2033#issuecomment-1598547465 | |
steps: | |
- name: Check out sources | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Fetch master branch for reference | |
# The main branch detection of siderolabs/conform relies on the branch tracking the "origin" remote, see | |
# https://github.com/siderolabs/conform/blob/2feadaa74eef93dd35f303582f2e82afa62a119d/cmd/conform/enforce.go#L74 | |
run: git checkout master && git checkout - | |
if: github.ref_name != 'master' | |
- name: Install siderolabs/conform | |
run: go install github.com/siderolabs/conform/cmd/conform@latest | |
- name: Run siderolabs/conform | |
run: conform enforce | |
rustfmt: | |
name: rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out sources | |
uses: actions/checkout@v4 | |
- name: Install Rust toolchain for formatting | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: rustfmt | |
- name: rustfmt check | |
uses: actions-rust-lang/rustfmt@v1 |