fix Image.read_metadata and DerivedMetadata.from_image #24
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: "Run tests" | |
| on: | |
| push: | |
| pull_request: | |
| types: ["synchronize"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v4 | |
| - name: Install Lix | |
| uses: samueldr/lix-gha-installer-action@v1 | |
| - name: Run `mix deps.get` in a Nix shell | |
| run: nix-shell --pure --run "mix deps.get" | |
| - name: Run `mix test` in a Nix shell | |
| run: nix-shell --pure --run "mix test" |