Expose Atom::is_initialized
#561
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: Publish for-all-projects | |
on: | |
push: | |
branches: master | |
pull_request: | |
concurrency: | |
group: ${{ github.ref }}-publish-for-all-projects | |
cancel-in-progress: true | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: -D warnings | |
CARGO_VERSION: "" # Should be set in the job | |
jobs: | |
publish-for-all-projects: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: rust update & cargo version env set | |
run: | | |
rustup update | |
CARGO_VERSION=$(cargo --version | cut -d ' ' -f 2) && echo "CARGO_VERSION=$CARGO_VERSION" >> $GITHUB_ENV | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/ | |
for-all-projects/target/ | |
key: ${{ runner.os }}-${{ env.CARGO_VERSION }}-for-all-projects-${{ hashFiles('for-all-projects/Cargo.lock') }} | |
- working-directory: for-all-projects | |
run: | | |
cargo check | |
cargo fmt | |
cargo clippy | |
if [[ $(git diff --name-only) ]]; then | |
echo "::error::File change detected. Please check." | |
echo "::error::$(git diff --name-only)" | |
exit 1 | |
fi | |
- uses: katyo/publish-crates@v2 | |
with: | |
path: "for-all-projects" | |
registry-token: ${{ secrets.CARGO_API_TOKEN }} | |
dry-run: ${{ github.ref != 'refs/heads/master' }} |