Skip to content

Change role selectors from nouns to verbs (implement/review) #7

Change role selectors from nouns to verbs (implement/review)

Change role selectors from nouns to verbs (implement/review) #7

Workflow file for this run

name: pre-merge
on:
pull_request:
branches: [main, master]
workflow_dispatch:
jobs:
pre-merge:
if: github.actor == 'justinmoon'
runs-on: blacksmith-16vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v4
- uses: useblacksmith/stickydisk@v1
with:
key: ${{ github.repository }}-nix-v1-${{ runner.os }}
path: /nix
- name: Fix /nix ownership
run: |
if [ -d /nix ] && [ "$(stat -c %u /nix)" != "$(id -u)" ]; then
sudo chown -R "$(id -u):$(id -g)" /nix
fi
- uses: nixbuild/nix-quick-install-action@v30
- uses: useblacksmith/stickydisk@v1
with:
key: ${{ github.repository }}-cargo-home-v1-${{ runner.os }}
path: ~/.cargo
- uses: useblacksmith/stickydisk@v1
with:
key: ${{ github.repository }}-cargo-target-v1-${{ runner.os }}
path: target
- run: nix develop .#default -c just pre-merge