feat(converter): add partial support for @embed
tags
#95
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
name: test | |
on: | |
push: | |
branches: [master] | |
paths: | |
- "src/**/*.rs" | |
- "Cargo.*" | |
- "flake.*" | |
pull_request: | |
branches: [master] | |
paths: | |
- ".github/workflows/*.yml" | |
- "src/**/*.rs" | |
- "Cargo.*" | |
- "flake.*" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
nextest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: dorny/paths-filter@v3 | |
id: flake_changes | |
with: | |
filters: | | |
flake_files: | |
- "flake.*" | |
- name: Run nix flake check | |
if: steps.flake_changes.outputs.flake_files == 'true' | |
run: nix flake check | |
- uses: Swatinem/rust-cache@v2 | |
- name: Test codebase | |
run: nix develop . -c cargo nextest run --features ci |