Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Pull repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Check
if: ${{ success() }}
run: cargo check --all-targets --all-features
Expand All @@ -23,7 +23,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Pull repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Compile data
if: ${{ success() }}
run: cargo run --bin=data_compiler data
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
EXTENSION: .exe
steps:
- name: Pull repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install rustup
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable --profile default --target ${{ matrix.TARGET }} -y
Expand Down
Loading